Package com.grephq.ot
Class JusbError
- java.lang.Object
-
- com.grephq.ot.JusbError
-
public class JusbError extends java.lang.Object
Error codes
-
-
Field Summary
Fields Modifier and Type Field Description static int
ERROR_ACCESS
Access denied (insufficient permissions)static int
ERROR_BUSY
Resource busystatic int
ERROR_INTERRUPTED
System call interrupted (perhaps due to signal)static int
ERROR_INVALID_PARAM
Invalid parameterstatic int
ERROR_IO
Input/output errorstatic int
ERROR_NO_DEVICE
No such device (it may have been disconnected)static int
ERROR_NO_MEM
Insufficient memorystatic int
ERROR_NOT_FOUND
Entity not foundstatic int
ERROR_NOT_SUPPORTED
Operation not supported or unimplemented on this platformstatic int
ERROR_OTHER
Other errorstatic int
ERROR_OVERFLOW
Overflowstatic int
ERROR_PIPE
Pipe errorstatic int
ERROR_TIMEOUT
Operation timed outstatic int
SUCCESS
Success (no error)
-
Constructor Summary
Constructors Constructor Description JusbError()
-
-
-
Field Detail
-
SUCCESS
public static final int SUCCESS
Success (no error)- See Also:
- Constant Field Values
-
ERROR_IO
public static final int ERROR_IO
Input/output error- See Also:
- Constant Field Values
-
ERROR_INVALID_PARAM
public static final int ERROR_INVALID_PARAM
Invalid parameter- See Also:
- Constant Field Values
-
ERROR_ACCESS
public static final int ERROR_ACCESS
Access denied (insufficient permissions)- See Also:
- Constant Field Values
-
ERROR_NO_DEVICE
public static final int ERROR_NO_DEVICE
No such device (it may have been disconnected)- See Also:
- Constant Field Values
-
ERROR_NOT_FOUND
public static final int ERROR_NOT_FOUND
Entity not found- See Also:
- Constant Field Values
-
ERROR_BUSY
public static final int ERROR_BUSY
Resource busy- See Also:
- Constant Field Values
-
ERROR_TIMEOUT
public static final int ERROR_TIMEOUT
Operation timed out- See Also:
- Constant Field Values
-
ERROR_OVERFLOW
public static final int ERROR_OVERFLOW
Overflow- See Also:
- Constant Field Values
-
ERROR_PIPE
public static final int ERROR_PIPE
Pipe error- See Also:
- Constant Field Values
-
ERROR_INTERRUPTED
public static final int ERROR_INTERRUPTED
System call interrupted (perhaps due to signal)- See Also:
- Constant Field Values
-
ERROR_NO_MEM
public static final int ERROR_NO_MEM
Insufficient memory- See Also:
- Constant Field Values
-
ERROR_NOT_SUPPORTED
public static final int ERROR_NOT_SUPPORTED
Operation not supported or unimplemented on this platform- See Also:
- Constant Field Values
-
ERROR_OTHER
public static final int ERROR_OTHER
Other error- See Also:
- Constant Field Values
-
-