public class UnsupportedByteOrderException extends DeviceException
Device
to indicate that the attempted I/O operation does
not support the byte ordering of the provided ByteBuffer
or that the
needed byte re-ordering would induce a detrimental loss of performance or quality
on the intended I/O operation.Constructor and Description |
---|
UnsupportedByteOrderException()
Constructs a new
UnsupportedByteOrderException instance with null as
its detailed reason message. |
UnsupportedByteOrderException(String message)
Constructs a new
UnsupportedByteOrderException instance with the specified
detailed reason message. |
getMessage, initCause, printStackTrace, printStackTrace, toString
public UnsupportedByteOrderException()
UnsupportedByteOrderException
instance with null
as
its detailed reason message.public UnsupportedByteOrderException(String message)
UnsupportedByteOrderException
instance with the specified
detailed reason message. The error message string message
can later be retrieved by
the getMessage
method.message
- the detailed reason of the exception (may be null
).