Examples of WallSQLException


Examples of com.alibaba.druid.wall.WallSQLException

import com.alibaba.druid.wall.WallSQLException;


public class WallSQLExceptionTest extends TestCase {
    public void test_wall() throws Exception {
        WallSQLException ex = new WallSQLException("", new RuntimeException());
        Assert.assertEquals("", ex.getMessage());
        Assert.assertNotNull(ex.getCause());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.