一、自定义异常
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: 自定义异常
原文:https://www.cnblogs.com/whalesea/p/12879163.html