mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-06 09:25:01 -05:00
19 lines
259 B
Java
19 lines
259 B
Java
|
package java.lang;
|
||
|
|
||
|
public class ClassNotFoundException extends Exception {
|
||
|
|
||
|
public ClassNotFoundException()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public ClassNotFoundException(String s)
|
||
|
{
|
||
|
super(s);
|
||
|
}
|
||
|
|
||
|
public ClassNotFoundException(String s, Throwable ex)
|
||
|
{
|
||
|
super(s,ex);
|
||
|
}
|
||
|
}
|