自定义异常
Posted yaobiluo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义异常相关的知识,希望对你有一定的参考价值。
自定义异常就为了一个名字而已
public void setAge(int age) throws AgeOutOfBoundsException if (age > 0 && age <120) this.age = age; else throw new AgeOutOfBoundsException("年龄非法"); class AgeOutOfBoundsException extends Exception public AgeOutOfBoundsException(String dec) super(dec);
以上是关于自定义异常的主要内容,如果未能解决你的问题,请参考以下文章