View Javadoc

1   /*
2    * To change this template, choose Tools | Templates
3    * and open the template in the editor.
4    */
5   
6   package cz.cuni.amis.pogamut.unreal.t3dgenerator;
7   
8   /**
9    * Exception raised while generating T3d.
10   * @author Martin Cerny
11   */
12  public class T3dGeneratorException extends RuntimeException{
13  
14      public T3dGeneratorException(Throwable cause) {
15          super(cause);
16      }
17  
18      public T3dGeneratorException(String message, Throwable cause) {
19          super(message, cause);
20      }
21  
22      public T3dGeneratorException(String message) {
23          super(message);
24      }
25  
26      public T3dGeneratorException() {
27      }
28  
29  }