public class BuildTimeoutException extends BuildException
Constructor and Description |
---|
BuildTimeoutException()
Constructs a build exception with no descriptive information.
|
BuildTimeoutException(String message)
Constructs an exception with the given descriptive message.
|
BuildTimeoutException(String message,
Location location)
Constructs an exception with the given descriptive message and a
location in a file.
|
BuildTimeoutException(String message,
Throwable cause)
Constructs an exception with the given message and exception as
a root cause.
|
BuildTimeoutException(String msg,
Throwable cause,
Location location)
Constructs an exception with the given message and exception as
a root cause and a location in a file.
|
BuildTimeoutException(Throwable cause)
Constructs an exception with the given exception as a root cause.
|
BuildTimeoutException(Throwable cause,
Location location)
Constructs an exception with the given exception as
a root cause and a location in a file.
|
getLocation, setLocation, toString
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace
public BuildTimeoutException()
public BuildTimeoutException(String message)
message
- A description of or information about the exception.
Should not be null
.public BuildTimeoutException(String message, Location location)
message
- A description of or information about the exception.
Should not be null
.location
- The location in the project file where the error
occurred. Must not be null
.public BuildTimeoutException(String message, Throwable cause)
message
- A description of or information about the exception.
Should not be null
unless a cause is specified.cause
- The exception that might have caused this one.
May be null
.public BuildTimeoutException(String msg, Throwable cause, Location location)
msg
- A description of or information about the exception.
Should not be null
unless a cause is specified.cause
- The exception that might have caused this one.
May be null
.location
- The location in the project file where the error
occurred. Must not be null
.public BuildTimeoutException(Throwable cause)
cause
- The exception that might have caused this one.
Should not be null
.public BuildTimeoutException(Throwable cause, Location location)
cause
- The exception that might have caused this one.
Should not be null
.location
- The location in the project file where the error
occurred. Must not be null
.