package com.gezhi;
/**
* 创建一个自定义异常SpendMoneyException类
*
* @author square 凉
*
*/
@SuppressWarnings("serial")
/**
* 该类继承异常类的父类Exception
*
* @author square 凉
*
*/
public class SpendMoneyException extends Exception {
* 创建一个自定义异常SpendMoneyException类
*
* @author square 凉
*
*/
@SuppressWarnings("serial")
/**
* 该类继承异常类的父类Exception
*
* @author square 凉
*
*/
public class SpendMoneyException extends Exception {
/**
* 显示写出自定义异常的无参构造器
*/
public SpendMoneyException() {
* 显示写出自定义异常的无参构造器
*/
public SpendMoneyException() {
}
/**
* 创建一个自定义异常的有参构造器(重写父类的有参构造,严格来说不能是重写)
*
* @param message
*/
public SpendMoneyException(String message) {
super(message);
* 创建一个自定义异常的有参构造器(重写父类的有参构造,严格来说不能是重写)
*
* @param message
*/
public SpendMoneyException(String message) {
super(message);
}
}
...................................................................................
package com.gezhi;
/**
* @ 创建一个异常类
* @author square 凉
*
*/
public class ChainTest {
/**
* @ 创建一个异常类
* @author square 凉
*
*/
public class ChainTest {
/**
* main方法调用test2这个方法,捕获并处理被抛出的方法
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
* main方法调用test2这个方法,捕获并处理被抛出的方法
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
ChainTest ct = new ChainTest();//实例化一个类对象
try {
ct.test2();//调用test2()这个方法
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();//捕获这个异常并打印异常发生的位置
}
}
try {
ct.test2();//调用test2()这个方法
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();//捕获这个异常并打印异常发生的位置
}
}
/**
* 创建test2()这个方法引用test1的方法并捕获异常且不处理,继续抛给main方法
*/
private void test2() {
// TODO Auto-generated method stub
try {
test1();//调用test1方法
} catch (SpendMoneyException e) {
// TODO Auto-generated catch block
RuntimeException rn = new RuntimeException("一分钱一分货");//将test1里面抛出的自定义异常又声明为运行时异常继续抛出
rn.initCause(e);//引起该运行时异常的原因和异常地址
throw rn;//抛出新的异常
}
}
* 创建test2()这个方法引用test1的方法并捕获异常且不处理,继续抛给main方法
*/
private void test2() {
// TODO Auto-generated method stub
try {
test1();//调用test1方法
} catch (SpendMoneyException e) {
// TODO Auto-generated catch block
RuntimeException rn = new RuntimeException("一分钱一分货");//将test1里面抛出的自定义异常又声明为运行时异常继续抛出
rn.initCause(e);//引起该运行时异常的原因和异常地址
throw rn;//抛出新的异常
}
}
/**
* test1方法声明一个自定义异常
* @throws SpendMoneyExceptionSpendMoneyException不处理继续向下抛出
*/
private static void test1() throws SpendMoneyException {
// TODO Auto-generated method stub
throw new SpendMoneyException("没钱啦!!!");
}
* test1方法声明一个自定义异常
* @throws SpendMoneyExceptionSpendMoneyException不处理继续向下抛出
*/
private static void test1() throws SpendMoneyException {
// TODO Auto-generated method stub
throw new SpendMoneyException("没钱啦!!!");
}
}
......................