Groovy Documentation

org.ajoberstar.gradle.findbugs
[Java] Class FindbugsException

java.lang.Object
  java.lang.Throwable
      java.lang.Exception
          org.ajoberstar.gradle.findbugs.FindbugsException

public class FindbugsException
extends java.lang.Exception

Thrown when an exception happens in Findbugs processing.

Authors:
Andrew Oberstar
Version:
0.1.0
Since:
0.1.0


Constructor Summary
FindbugsException()

Constructs a new exception with null as its detail message.

FindbugsException(java.lang.String message)

Constructs a new exception with the specified detail message.

FindbugsException(java.lang.Throwable cause)

Constructs a new exception with the specified cause and a detail message of (cause==null ?

FindbugsException(java.lang.String message, java.lang.Throwable cause)

Constructs a new exception with the specified detail message and cause.

 
Method Summary
 
Methods inherited from class java.lang.Exception
java.lang.Exception#printStackTrace(), java.lang.Exception#printStackTrace(java.io.PrintStream), java.lang.Exception#printStackTrace(java.io.PrintWriter), java.lang.Exception#fillInStackTrace(), java.lang.Exception#getCause(), java.lang.Exception#initCause(java.lang.Throwable), java.lang.Exception#toString(), java.lang.Exception#getMessage(), java.lang.Exception#getLocalizedMessage(), java.lang.Exception#getStackTrace(), java.lang.Exception#setStackTrace([Ljava.lang.StackTraceElement;), java.lang.Exception#wait(long), java.lang.Exception#wait(long, int), java.lang.Exception#wait(), java.lang.Exception#equals(java.lang.Object), java.lang.Exception#hashCode(), java.lang.Exception#getClass(), java.lang.Exception#notify(), java.lang.Exception#notifyAll()
 
Methods inherited from class java.lang.Throwable
java.lang.Throwable#printStackTrace(), java.lang.Throwable#printStackTrace(java.io.PrintStream), java.lang.Throwable#printStackTrace(java.io.PrintWriter), java.lang.Throwable#fillInStackTrace(), java.lang.Throwable#getCause(), java.lang.Throwable#initCause(java.lang.Throwable), java.lang.Throwable#toString(), java.lang.Throwable#getMessage(), java.lang.Throwable#getLocalizedMessage(), java.lang.Throwable#getStackTrace(), java.lang.Throwable#setStackTrace([Ljava.lang.StackTraceElement;), java.lang.Throwable#wait(long), java.lang.Throwable#wait(long, int), java.lang.Throwable#wait(), java.lang.Throwable#equals(java.lang.Object), java.lang.Throwable#hashCode(), java.lang.Throwable#getClass(), java.lang.Throwable#notify(), java.lang.Throwable#notifyAll()
 
Methods inherited from class java.lang.Object
java.lang.Object#wait(long), java.lang.Object#wait(long, int), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll()
 

Constructor Detail

FindbugsException

public FindbugsException()
Constructs a new exception with null as its detail message. The cause is not initialized, and may subsequently be initialized by a call to java.lang.Throwable#initCause(java.lang.Throwable).


FindbugsException

public FindbugsException(java.lang.String message)
Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to java.lang.Throwable#initCause(java.lang.Throwable).
Parameters:
message - the detail message. The detail message is saved for later retrieval by the java.lang.Throwable#getMessage() method.


FindbugsException

public FindbugsException(java.lang.Throwable cause)
Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause). This constructor is useful for exceptions that are little more than wrappers for other throwables (for example, java.security.PrivilegedActionException).
Parameters:
cause - the cause (which is saved for later retrieval by the java.lang.Throwable#getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)


FindbugsException

public FindbugsException(java.lang.String message, java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause. Note that the detail message associated with cause is not automatically incorporated in this exception's detail message.
Parameters:
message - the detail message. The detail message is saved for later retrieval by the java.lang.Throwable#getMessage() method.
cause - the cause (which is saved for later retrieval by the java.lang.Throwable#getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)


 

Groovy Documentation