Package com.uic.ase.proj.xbn.util

Examples of com.uic.ase.proj.xbn.util.LockedException


    <P>Equal to <CODE>throw new <A HREF="~JD~lx~EJD~">LockedException</A>(<A HREF="~JD~xbno~EJD~#getXMsgPrefix()">getXMsgPrefix</A>() + s_funcBody)</CODE></P>

    @param  s_funcBody  The throwing function name and error message body.
   **/
  protected final void throwLX(String s_funcBody)  {
    throw new LockedException(getXMsgPrefix() + s_funcBody);
  }
View Full Code Here


    <P>If s_name is null, this equals <CODE>throw new <A HREF="~JD~lx~EJD~">LockedException</A>(<A HREF="~JD~xbno~EJD~#getXMsgPrefix()">getXMsgPrefix</A>() + s_callingFunc + ":  " + s_lockedMsg))</CODE></P>
   **/
  protected final void throwLX(String s_callingFunc, String s_name, String s_lockedMsg)  {
    String sNamePart = ((s_name == null?  sES  :  " [name=" + s_name + "]");
    throw new LockedException(getXMsgPrefix() + s_callingFunc + sNamePart + ":  " + s_lockedMsg);
  }
View Full Code Here

TOP

Related Classes of com.uic.ase.proj.xbn.util.LockedException

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.