org.apache.myfaces.buildtools.maven2.plugin.builder.utils
Class BuildException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.myfaces.buildtools.maven2.plugin.builder.utils.BuildException
- All Implemented Interfaces:
- Serializable
public class BuildException
- extends RuntimeException
An unchecked exception that can be thrown whenever something goes wrong.
An unchecked exception is useful in this particular application because
we don't need to bother declaring it everywhere. Checked exceptions are
fine here because there is no sensible "recovery strategy" for a build
failure except terminating the build.
- See Also:
- Serialized Form
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
BuildException
public BuildException(String msg)
BuildException
public BuildException(String msg,
Exception cause)
Copyright © 2001-2013 The Apache Software Foundation. All Rights Reserved.