Klasse ArgumentDoesNotBelongToParentException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
ch.nolix.core.errorcontrol.invalidargumentexception.InvalidArgumentException
ch.nolix.core.errorcontrol.invalidargumentexception.ArgumentDoesNotBelongToParentException
- Alle implementierten Schnittstellen:
Serializable
A
ArgumentDoesNotBelongToParentException
is a
InvalidArgumentException
that is supposed to be thrown when a given
argument does undesirably not belong to a parent.- Version:
- 2022-01-30
- Autor:
- Silvan Wyss
- Siehe auch:
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungforArgument
(Object argument) forArgumentAndParentType
(Object argument, Class<?> parentType) Von Klasse geerbte Methoden ch.nolix.core.errorcontrol.invalidargumentexception.InvalidArgumentException
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
-
forArgument
- Parameter:
argument
-- Gibt zurück:
- a new
ArgumentDoesNotBelongToParentException
for the given argument.
-
forArgumentAndParentType
public static ArgumentDoesNotBelongToParentException forArgumentAndParentType(Object argument, Class<?> parentType) - Parameter:
argument
-parentType
-- Gibt zurück:
- a new
ArgumentDoesNotBelongToParentException
for the given argument and parentType.
-