Package com.mchange.util

Examples of com.mchange.util.AssertException


   
    public static void myAssert(boolean bool)
    {if (!bool) throw new AssertException();}
   
    public static void myAssert(boolean bool, String message)
    {if (!bool) throw new AssertException(message);}
View Full Code Here

TOP

Related Classes of com.mchange.util.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.