Package hu.akarnokd.rxjava3.functions
Class FunctionTagging.FunctionTaggingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- hu.akarnokd.rxjava3.functions.FunctionTagging.FunctionTaggingException
-
- All Implemented Interfaces:
Serializable
- Enclosing class:
- FunctionTagging
public static final class FunctionTagging.FunctionTaggingException extends RuntimeException
The stackless tagging exception appended to the chain of causes of the original exception thrown by the wrapped function.This exception doesn't store the actual stacktrace as it only clutters the original stacktrace when printed.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FunctionTaggingException(String message)Constructs a FunctionTaggingException with the given message.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ThrowableappendLast(Throwable ex)Try appending this FunctionTaggingException as the very last cause of the given throwable.ThrowablefillInStackTrace()-
Methods inherited from class java.lang.Throwable
addSuppressed, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
FunctionTaggingException
public FunctionTaggingException(String message)
Constructs a FunctionTaggingException with the given message.- Parameters:
message- the message
-
-
Method Detail
-
fillInStackTrace
public Throwable fillInStackTrace()
- Overrides:
fillInStackTracein classThrowable
-
-