Package Exceptions
Class OutputException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- Exceptions.OutputException
-
- All Implemented Interfaces:
java.io.Serializable
public class OutputException extends java.lang.Exception
Exception for when there is a problem with creating output- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OutputException()
Default constructorOutputException(java.lang.String msg)
Constructor that takes a messageOutputException(java.lang.String msg, java.lang.Throwable cause)
Constructor that takes a message and another Throwable as the cause of this exception.
-
-
-
Constructor Detail
-
OutputException
public OutputException()
Default constructor
-
OutputException
public OutputException(java.lang.String msg)
Constructor that takes a message- Parameters:
msg
- The message
-
OutputException
public OutputException(java.lang.String msg, java.lang.Throwable cause)
Constructor that takes a message and another Throwable as the cause of this exception.- Parameters:
msg
- The messagecause
- The cause
-
-