Package com.metratec.lib.rfidreader
Class RFIDReaderException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.metratec.lib.rfidreader.RFIDReaderException
-
- All Implemented Interfaces:
java.io.Serializable
public class RFIDReaderException extends java.lang.Exception
The Exception Class for the metraTec RFID readers- Author:
- Matthias Neumann (neumann@metratec.com)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RFIDReaderException()
Constructs a new RFID reader exception.RFIDReaderException(int errorcode)
Constructs a new RFID reader exception with the specified error code.RFIDReaderException(int errorcode, java.lang.String s)
Constructs a new RFID reader exception with the specified detail message and error code.RFIDReaderException(java.lang.String s)
Constructs a new RFID reader exception with the specified detail message.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getErrorCode()
-
-
-
Constructor Detail
-
RFIDReaderException
public RFIDReaderException()
Constructs a new RFID reader exception.- See Also:
Exception
-
RFIDReaderException
public RFIDReaderException(java.lang.String s)
Constructs a new RFID reader exception with the specified detail message.- Parameters:
s
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.- See Also:
Exception(String message)
-
RFIDReaderException
public RFIDReaderException(int errorcode)
Constructs a new RFID reader exception with the specified error code.- Parameters:
errorcode
- the error code. The detail message is saved for later retrieval by thegetErrorCode()
method.
-
RFIDReaderException
public RFIDReaderException(int errorcode, java.lang.String s)
Constructs a new RFID reader exception with the specified detail message and error code.- Parameters:
errorcode
- the error code. The detail message is saved for later retrieval by thegetErrorCode()
method.s
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
-