| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException net.xoetrope.builder.editor.ant.BuildException
BuildException | public class BuildException extends RuntimeException (Code) | | Signals an error condition during a build.
author: James Duncan Davidson |
Constructor Summary | |
public | BuildException() Constructs a build exception with no descriptive information. | public | BuildException(String msg) Constructs an exception with the given descriptive message. | public | BuildException(String msg, Exception cause) Constructs an exception with the given message and exception as
a root cause. | public | BuildException(Exception cause) Constructs an exception with the given exception as a root cause. |
BuildException | public BuildException()(Code) | | Constructs a build exception with no descriptive information.
|
BuildException | public BuildException(String msg)(Code) | | Constructs an exception with the given descriptive message.
Parameters: msg - Description of or information about the exception. |
BuildException | public BuildException(String msg, Exception cause)(Code) | | Constructs an exception with the given message and exception as
a root cause.
Parameters: msg - Description of or information about the exception. Parameters: cause - Exception that might have cause this one. |
BuildException | public BuildException(Exception cause)(Code) | | Constructs an exception with the given exception as a root cause.
Parameters: cause - Exception that might have caused this one. |
|
|
|