Klasse ClosedArgumentException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
ch.nolix.core.errorcontrol.invalidargumentexception.InvalidArgumentException
ch.nolix.core.errorcontrol.invalidargumentexception.ClosedArgumentException
- Alle implementierten Schnittstellen:
Serializable
A
ClosedArgumentException
is a InvalidArgumentException
that
is supposed to be thrown when an argument is undesirably closed.- Version:
- 2019-01-26
- Autor:
- Silvan Wyss
- Siehe auch:
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungstatic ClosedArgumentException
forArgument
(Object argument) static ClosedArgumentException
forArgumentNameAndArgument
(String argumentName, Object argument) Von Klasse geerbte Methoden ch.nolix.core.errorcontrol.invalidargumentexception.InvalidArgumentException
forArgumentAndErrorPredicate, forArgumentAndErrorPredicateAndCause, 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
-
forArgument
- Parameter:
argument
-- Gibt zurück:
- a new
ClosedArgumentException
for the given argument.
-
forArgumentNameAndArgument
public static ClosedArgumentException forArgumentNameAndArgument(String argumentName, Object argument) - Parameter:
argumentName
-argument
-- Gibt zurück:
- a new
ClosedArgumentException
for the given argumentName and argument. - Löst aus:
IllegalArgumentException
- if the given argumentName is null.IllegalArgumentException
- if the given argumentName is blank.
-