001
002package gudusoft.gsqlparser.pp.logger;
003
004import gudusoft.gsqlparser.pp.utils.PPBusinessException;
005
006public class PPAssert
007{
008
009        /**
010         * the assert
011         * 
012         * @param isTrue
013         * @param msg
014         */
015        public static void assertTrue( boolean isTrue, String msg )
016        {
017                if ( !isTrue )
018                {
019                        throw new PPBusinessException( msg );
020                }
021        }
022}