KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > de > uni_hamburg > eggink > autojar > NotFoundException


1 package de.uni_hamburg.eggink.autojar;
2
3 import java.io.*;
4
5 class NotFoundException
6     extends Exception JavaDoc
7 {
8     private String JavaDoc name;
9
10     //----------------------------------------------------------------------
11

12     NotFoundException(String JavaDoc name)
13     {
14         super(name);
15         this.name = name;
16     }
17
18     //----------------------------------------------------------------------
19

20     String JavaDoc getName()
21     {
22         return name;
23     }
24 }
25
26
Popular Tags