码迷,mamicode.com
首页 > 其他好文 > 详细

自定义异常

时间:2014-08-06 22:14:32      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   java   os   io   strong   ar   

1 public class AgeBelow18Exception extends RuntimeException {
2     /*public String getMessage() {
3         return "Please Call Users Above 18 Years";
4     }*/
5     public AgeBelow18Exception(){
6         super("Please Call Users Above 18 Years");
7     }
8 }

 

 1 package com.intel.aug6;
 2 
 3 import java.util.Scanner;
 4 
 5 class ExceptionTest1 {
 6 
 7     public void takeInput() throws AgeBelow18Exception {
 8         Scanner inp = new Scanner(System.in);
 9         System.out.println("Enter Your AGE:- ");
10         int age = inp.nextInt();
11         if (age < 18)
12             throw new AgeBelow18Exception();
13     }
14 
15     public static void main(String[] args) {
16         ExceptionTest1 et = new ExceptionTest1();
17         try {
18             et.takeInput();
19         } catch (AgeBelow18Exception e) {
20             System.out.println(e.getMessage());
21         }
22     }
23 }

bubuko.com,布布扣

 

自定义异常,布布扣,bubuko.com

自定义异常

标签:style   blog   color   java   os   io   strong   ar   

原文地址:http://www.cnblogs.com/thrive/p/3895508.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!