Class IntrospectionError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.assertj.core.util.introspection.IntrospectionError
-
- All Implemented Interfaces:
Serializable
public class IntrospectionError extends RuntimeException
Error that occurred when using JavaBeans Introspection.- Author:
- Alex Ruiz
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description IntrospectionError(String message)
Creates a new
.IntrospectionError
IntrospectionError(String message, Throwable cause)
Creates a new
.IntrospectionError
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
IntrospectionError
public IntrospectionError(String message)
Creates a new
.IntrospectionError
- Parameters:
message
- the detail message.
-
IntrospectionError
public IntrospectionError(String message, Throwable cause)
Creates a new
.IntrospectionError
- Parameters:
message
- the detail message.cause
- the original cause.
-
-