Package elki.utilities.exceptions
Class ClassInstantiationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.ReflectiveOperationException
-
- elki.utilities.exceptions.ClassInstantiationException
-
- All Implemented Interfaces:
java.io.Serializable
public class ClassInstantiationException extends java.lang.ReflectiveOperationException
Error thrown when a class cannot be instantiated.- Since:
- 0.7.5
- 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 ClassInstantiationException()
Constructor.ClassInstantiationException(java.lang.String message)
Constructor.ClassInstantiationException(java.lang.String message, java.lang.Throwable cause)
Constructor.ClassInstantiationException(java.lang.Throwable cause)
Constructor.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Serial version.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ClassInstantiationException
public ClassInstantiationException()
Constructor.
-
ClassInstantiationException
public ClassInstantiationException(java.lang.String message)
Constructor.- Parameters:
message
- Error message
-
ClassInstantiationException
public ClassInstantiationException(java.lang.Throwable cause)
Constructor.- Parameters:
cause
- Cause
-
ClassInstantiationException
public ClassInstantiationException(java.lang.String message, java.lang.Throwable cause)
Constructor.- Parameters:
message
- Error messagecause
- Cause
-
-