Package net.sf.saxon.trans
Class LicenseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- net.sf.saxon.trans.LicenseException
-
- All Implemented Interfaces:
java.io.Serializable
public class LicenseException extends java.lang.RuntimeException
Exception thrown when there are problems with the license file- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
CANNOT_READ
static int
EXPIRED
static int
INVALID
static int
NOT_FOUND
static int
WRONG_CONFIGURATION
static int
WRONG_FEATURES
-
Constructor Summary
Constructors Constructor Description LicenseException(java.lang.String message, int reason)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getReason()
void
setReason(int reason)
-
-
-
Field Detail
-
EXPIRED
public static final int EXPIRED
- See Also:
- Constant Field Values
-
INVALID
public static final int INVALID
- See Also:
- Constant Field Values
-
NOT_FOUND
public static final int NOT_FOUND
- See Also:
- Constant Field Values
-
WRONG_FEATURES
public static final int WRONG_FEATURES
- See Also:
- Constant Field Values
-
CANNOT_READ
public static final int CANNOT_READ
- See Also:
- Constant Field Values
-
WRONG_CONFIGURATION
public static final int WRONG_CONFIGURATION
- See Also:
- Constant Field Values
-
-