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 * Thrown when a value of property of serialized object is not valid for
10 * serialization.
11 * @author Martin Cerny
12 */
13 public class InvalidPropertyValueException extends T3dGeneratorException{
14
15 public InvalidPropertyValueException() {
16 }
17
18 public InvalidPropertyValueException(String message) {
19 super(message);
20 }
21
22 public InvalidPropertyValueException(String message, Throwable cause) {
23 super(message, cause);
24 }
25
26 public InvalidPropertyValueException(Throwable cause) {
27 super(cause);
28 }
29
30 }