Package org.n52.janmayen.exception
Class LocationHintException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.n52.janmayen.exception.StringInterpolationException
-
- org.n52.janmayen.exception.LocationHintException
-
- All Implemented Interfaces:
Serializable
public abstract class LocationHintException extends StringInterpolationException
Exception with an additional location hint.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LocationHintException(Enum<?> location, String message, Object... args)LocationHintException(String message, Object... args)LocationHintException(String location, String message, Object... args)LocationHintException(String message, Throwable cause)LocationHintException(Throwable cause)LocationHintException(Throwable cause, Enum<?> location)LocationHintException(Throwable cause, Enum<?> location, String message, Object... args)LocationHintException(Throwable cause, String location)LocationHintException(Throwable cause, String message, Object... args)LocationHintException(Throwable cause, String location, String message, Object... args)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<String>getLocation()-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
LocationHintException
public LocationHintException(@Nullable String message, @Nullable Object... args)
-
LocationHintException
public LocationHintException(@Nullable String message, @Nullable Throwable cause)
-
LocationHintException
public LocationHintException(@Nullable Throwable cause)
-
LocationHintException
public LocationHintException(@Nullable Throwable cause, @Nullable String location)
-
LocationHintException
public LocationHintException(@Nullable Throwable cause, @Nullable Enum<?> location)
-
LocationHintException
public LocationHintException(@Nullable String location, @Nullable String message, @Nullable Object... args)
-
LocationHintException
public LocationHintException(@Nullable Enum<?> location, @Nullable String message, @Nullable Object... args)
-
LocationHintException
public LocationHintException(@Nullable Throwable cause, @Nullable String message, @Nullable Object... args)
-
LocationHintException
public LocationHintException(@Nullable Throwable cause, @Nullable Enum<?> location, @Nullable String message, @Nullable Object... args)
-
-