Package com.google.api.pathtemplate
Class ValidationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalArgumentException
-
- com.google.api.pathtemplate.ValidationException
-
- All Implemented Interfaces:
Serializable
public class ValidationException extends IllegalArgumentException
Exception thrown if there is a validation problem with a path template, http config, or related framework methods. Comes as an illegal argument exception subclass. Allows to globally set a thread-local validation context description which each exception inherits.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
ValidationException.Supplier<T>
-
Constructor Summary
Constructors Constructor Description ValidationException(String format, Object... args)
Construct validation exception with implicit context.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
popCurrentThreadValidationContext()
Clears the validation context.static void
pushCurrentThreadValidationContext(ValidationException.Supplier<String> supplier)
Sets the validation context description.static void
pushCurrentThreadValidationContext(String context)
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Method Detail
-
pushCurrentThreadValidationContext
public static void pushCurrentThreadValidationContext(ValidationException.Supplier<String> supplier)
Sets the validation context description. Each thread has its own description, so this is thread safe.
-
pushCurrentThreadValidationContext
public static void pushCurrentThreadValidationContext(String context)
-
popCurrentThreadValidationContext
public static void popCurrentThreadValidationContext()
Clears the validation context.
-
-