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:
Serializable
- Direct Known Subclasses:
InvalidCodeException
Represents the exception for creating barcode image.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInitializes a new instance of the BarCodeException class.BarCodeException(String message) Initializes a new instance of the BarCodeException class with specified error message.BarCodeException(String message, Exception innerException) Initializes a new instance of the BarCodeException class with the specified error message and the current exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
BarCodeException
public BarCodeException()Initializes a new instance of the BarCodeException class.
-
BarCodeException
Initializes a new instance of the BarCodeException class with specified error message.
- Parameters:
message- The error message of the exception.
-
BarCodeException
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.
-