Klasse UnrepresentingArgumentException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
ch.nolix.core.errorcontrol.invalidargumentexception.InvalidArgumentException
ch.nolix.core.errorcontrol.invalidargumentexception.UnrepresentingArgumentException
- Alle implementierten Schnittstellen:
Serializable
A
UnrepresentingArgumentException
is a
InvalidArgumentException
that is supposed to be thrown when a given
argument does undesirable not represent an object of a certain type.- Version:
- 2017-03-05
- Autor:
- Silvan Wyss
- Siehe auch:
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungforArgumentAndType
(Object argument, Class<?> type) forArgumentNameAndArgumentAndType
(String argumentName, Object argument, Class<?> type) Von Klasse geerbte Methoden ch.nolix.core.errorcontrol.invalidargumentexception.InvalidArgumentException
forArgument, forArgumentAndErrorPredicate, forArgumentAndErrorPredicateAndCause, forArgumentNameAndArgument, forArgumentNameAndArgumentAndErrorPredicate, getArgumentName, getErrorPredicate, getStoredArgument
Von Klasse geerbte Methoden java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Methodendetails
-
forArgumentAndType
- Parameter:
argument
-type
-- Gibt zurück:
- a new
UnrepresentingArgumentException
for the given argument and type. - Löst aus:
IllegalArgumentException
- if the given type is null.
-
forArgumentNameAndArgumentAndType
public static UnrepresentingArgumentException forArgumentNameAndArgumentAndType(String argumentName, Object argument, Class<?> type) - Parameter:
argumentName
-argument
-type
-- Gibt zurück:
- a new
UnrepresentingArgumentException
for the given argumentName, argument and type. - Löst aus:
IllegalArgumentException
- if the given argumentName is null.IllegalArgumentException
- if the given argumentName is blank.IllegalArgumentException
- if the given type is null.
-