Package com.uic.ase.proj.xbn

Examples of com.uic.ase.proj.xbn.AssertException


    <P>Equal to <CODE>throw new <A HREF="AssertException.html">AssertException</A>(<A HREF="#getXMsgPrefix()">getXMsgPrefix</A>() + s_classFuncMsg)</CODE></P>

    @param  s_classFuncMsg  The name of the calling class, calling function, and the body of the error message.
   **/
  protected final void throwAXSpoof(String s_classFuncMsg)  {
    throw new AssertException(getXMsgPrefix() + s_classFuncMsg);
  }
View Full Code Here


    <P>Throw an AssertException, but debug it first.</P>
   **/
  protected final void throwAXDbg(String s_funcMsg)  {
    String sError = getXMsgPrefix() + s_funcMsg;
    debug(sError);
    throw new AssertException(sError);
  }
View Full Code Here

    <P>Throw an AssertException, statically.</P>

    <P>Equal to <CODE>throw new <A HREF="~JD~ax~EJD~">AssertException</A>(<A HREF="~JD~xbno~EJD~#getXMsgPrefix()">getXMsgPrefix</A>() + s_callingClsFnc)</CODE></P>
   **/
  public static final void throwAXS(String s_callingClsFnc)  {
    throw new AssertException(getXMsgPrefix() + s_callingClsFnc);
  }
View Full Code Here

TOP

Related Classes of com.uic.ase.proj.xbn.AssertException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.