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