Package elki.utilities.exceptions
Class NotImplementedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- elki.utilities.exceptions.AbortException
-
- elki.utilities.exceptions.NotImplementedException
-
- All Implemented Interfaces:
java.io.Serializable
public class NotImplementedException extends AbortException
Exception thrown when a particular code path was not yet implemented.- Since:
- 0.6.0
- Author:
- Erich Schubert
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
Serial version.
-
Constructor Summary
Constructors Constructor Description NotImplementedException()
"Not implemented yet" exception.NotImplementedException(java.lang.String message)
Constructor.NotImplementedException(java.lang.String message, java.lang.Throwable cause)
Constructor.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Serial version.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
NotImplementedException
public NotImplementedException(java.lang.String message, java.lang.Throwable cause)
Constructor.- Parameters:
message
- Error messagecause
- Cause
-
NotImplementedException
public NotImplementedException(java.lang.String message)
Constructor.- Parameters:
message
- Error message
-
NotImplementedException
public NotImplementedException()
"Not implemented yet" exception.
-
-