Package com.google.jenkins.plugins.util
Class ExecutorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.google.jenkins.plugins.util.ExecutorException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ConflictException
,ForbiddenException
,MaxRetryExceededException
,NotFoundException
public abstract class ExecutorException extends Exception
This base exception class is used to wrap and propagate HTTP exceptions for specific status codes up the stack. We distinguish this kind fromIOException
so that all other kinds of exceptions may be safely handled while letting these propagate.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExecutorException()
ExecutorException(Throwable throwable)
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ExecutorException
public ExecutorException(Throwable throwable)
-
ExecutorException
public ExecutorException()
-
-