|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException net.sf.qualitytest.exception.IllegalClassWithPublicDefaultConstructorException
public class IllegalClassWithPublicDefaultConstructorException
Thrown to indicate that a class has a public default constructor which should be private.
Field Summary | |
---|---|
protected static String |
DEFAULT_MESSAGE
Default message to indicate that the a given argument must not be empty. |
protected static String |
MESSAGE_WITH_NAME
Message to indicate that the the given argument with name must not be empty. |
Constructor Summary | |
---|---|
IllegalClassWithPublicDefaultConstructorException()
Constructs an IllegalClassWithPublicDefaultConstructorException with the default message
DEFAULT_MESSAGE . |
|
IllegalClassWithPublicDefaultConstructorException(String name)
Constructs an IllegalClassWithPublicDefaultConstructorException with the message
MESSAGE_WITH_NAME including the given name of the class
as string representation. |
|
IllegalClassWithPublicDefaultConstructorException(String name,
Throwable cause)
Constructs a new exception with the message MESSAGE_WITH_NAME including the given name as string
representation and cause. |
|
IllegalClassWithPublicDefaultConstructorException(Throwable cause)
Constructs a new exception with the default message DEFAULT_MESSAGE . |
Method Summary |
---|
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
protected static final String DEFAULT_MESSAGE
protected static final String MESSAGE_WITH_NAME
Constructor Detail |
---|
public IllegalClassWithPublicDefaultConstructorException()
IllegalClassWithPublicDefaultConstructorException
with the default message
DEFAULT_MESSAGE
.
public IllegalClassWithPublicDefaultConstructorException(@Nullable String name)
IllegalClassWithPublicDefaultConstructorException
with the message
MESSAGE_WITH_NAME
including the given name of the class
as string representation.
name
- the name of the classpublic IllegalClassWithPublicDefaultConstructorException(@Nullable String name, @Nullable Throwable cause)
MESSAGE_WITH_NAME
including the given name as string
representation and cause.
name
- the name of the classcause
- the cause (which is saved for later retrieval by the Throwable.getCause()
method). (A
null
value is permitted, and indicates that the cause is nonexistent or unknown.)public IllegalClassWithPublicDefaultConstructorException(@Nullable Throwable cause)
DEFAULT_MESSAGE
.
cause
- the cause (which is saved for later retrieval by the Throwable.getCause()
method). (A
null
value is permitted, and indicates that the cause is nonexistent or unknown.)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |