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