一个简单的自定义异常
一、自定义异常
public class OneException extends RuntimeException { public OneException(String message){ super(message); } }
二、测试
import org.junit.Test; public class OneExceptionTest { @Test public void test(){ if(1<2){ throw new OneException("自定义异常"); } } }
三、结果
com.imooc.order.exception.OneException: 自定义异常
就算这个世道烂成一堆粪坑,那也不是你吃屎的理由