Package com.aspose.barcode
Class BarCodeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.aspose.barcode.BarCodeException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
InvalidCodeException
public class BarCodeException extends java.lang.RuntimeException
Represents the exception for creating barcode image.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description BarCodeException()
Initializes a new instance of the BarCodeException class.BarCodeException(java.lang.String message)
Initializes a new instance of the BarCodeException class with specified error message.BarCodeException(java.lang.String message, java.lang.Exception innerException)
Initializes a new instance of the BarCodeException class with the specified error message and the current exception.
-
-
-
Constructor Detail
-
BarCodeException
public BarCodeException()
Initializes a new instance of the BarCodeException class.
-
BarCodeException
public BarCodeException(java.lang.String message)
Initializes a new instance of the BarCodeException class with specified error message.
- Parameters:
message
- The error message of the exception.
-
BarCodeException
public BarCodeException(java.lang.String message, java.lang.Exception innerException)
Initializes a new instance of the BarCodeException class with the specified error message and the current exception.
- Parameters:
message
- The error message of the exception.innerException
- The current exception is thrown.
-
-