- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.io7m.junreachable.UnimplementedCodeException
-
- All Implemented Interfaces:
Serializable
public final class UnimplementedCodeException extends RuntimeException
The type of exceptions thrown upon reaching code that is currently unimplemented.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnimplementedCodeException()Construct a new exception without a specific cause.UnimplementedCodeException(Throwable x)Construct a new exception with the given cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
UnimplementedCodeException
public UnimplementedCodeException()
Construct a new exception without a specific cause.
-
UnimplementedCodeException
public UnimplementedCodeException(Throwable x)
Construct a new exception with the given cause.- Parameters:
x- The cause
-
-