org.aspectj.lang
�N���X SoftException

java.lang.Object
  �g��java.lang.Throwable
      �g��java.lang.Exception
          �g��java.lang.RuntimeException
              �g��org.aspectj.lang.SoftException
�������������C���^�t�F�[�X:
Serializable

public class SoftException
extends RuntimeException

Wrapper for checked exceptions matched by a 'declare soft'. You can soften checked exceptions at join points by using the form declare soft: TypePattern: Pointcut. At the join points, any exceptions thrown which match TypePattern will be wrapped in SoftException and rethrown. You can get the original exception using getWrappedThrowable() or getCause().

���A����:
�������������`��

�R���X�g���N�^���T�v
SoftException(Throwable inner)
           
 
���\�b�h���T�v
 Throwable getCause()
           
 Throwable getWrappedThrowable()
           
 void printStackTrace()
           
 void printStackTrace(PrintStream stream)
           
 void printStackTrace(PrintWriter stream)
           
 
�N���X java.lang.Throwable �����p���������\�b�h
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, setStackTrace, toString
 
�N���X java.lang.Object �����p���������\�b�h
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

�R���X�g���N�^������

SoftException

public SoftException(Throwable inner)
���\�b�h������

getWrappedThrowable

public Throwable getWrappedThrowable()

getCause

public Throwable getCause()

printStackTrace

public void printStackTrace()

printStackTrace

public void printStackTrace(PrintStream stream)

printStackTrace

public void printStackTrace(PrintWriter stream)