public class

AspectException

extends RuntimeException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ org.aopalliance.aop.AspectException

Class Overview

Superclass for all AOP infrastructure exceptions. Unchecked, as such exceptions are fatal and end user code shouldn't be forced to catch them.

Summary

Public Constructors
AspectException(String s)
Constructor for AspectException.
AspectException(String s, Throwable t)
Constructor for AspectException.
Public Methods
Throwable getCause()
Return the root cause of this exception.
String getMessage()
void printStackTrace(PrintWriter out)
void printStackTrace(PrintStream out)
void printStackTrace()
String toString()
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public AspectException (String s)

Constructor for AspectException.

public AspectException (String s, Throwable t)

Constructor for AspectException.

Public Methods

public Throwable getCause ()

Return the root cause of this exception. May be null

Returns
  • Throwable

public String getMessage ()

public void printStackTrace (PrintWriter out)

public void printStackTrace (PrintStream out)

public void printStackTrace ()

public String toString ()