Package com.io7m.jnoisetype.api
Class NTException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.io7m.jnoisetype.api.NTException
-
- All Implemented Interfaces:
java.io.Serializable
public abstract class NTException extends java.lang.ExceptionThe type of exceptions thrown by the API.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NTException(java.lang.String message)Construct an exception.NTException(java.lang.String message, java.lang.Throwable cause)Construct an exception.NTException(java.lang.Throwable cause)Construct an exception.
-
-
-
Constructor Detail
-
NTException
public NTException(java.lang.String message)
Construct an exception.- Parameters:
message- The message
-
NTException
public NTException(java.lang.String message, java.lang.Throwable cause)Construct an exception.- Parameters:
message- The messagecause- The underlying cause
-
NTException
public NTException(java.lang.Throwable cause)
Construct an exception.- Parameters:
cause- The underlying cause
-
-