blob: 34a160ff7474a9c67e02b29cb99958cfbb713851 (
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
26
27
|
/*
* jogltextException.java
*
* Created on December 20, 2006, 8:46 AM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package net.java.joglutils.jogltext;
/**
*
* @author Erik J. Tollerud
*/
public class JogltextException extends RuntimeException{
/** Creates a new instance of jogltextException */
public JogltextException() {
super();
}
public JogltextException(String str) {
super(str);
}
}
|