blob: 5d8fdec7e2738765e06c8374cf2166c4a884ebe3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* ModelLoadException.java
*
* Created on March 13, 2008, 9:48 PM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package net.java.joglutils.model;
/**
*
* @author RodgersGB
*/
public class ModelLoadException extends Exception {
/** Creates a new instance of ModelLoadException */
public ModelLoadException() {
}
public ModelLoadException(String message) {
super(message);
}
}
|