| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
package org.homeunix.thecave.buddi.plugin.api.exception; |
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
public class InvalidValueException extends ModelException { |
| 14 | |
public static final long serialVersionUID = 0; |
| 15 | |
|
| 16 | |
public InvalidValueException() { |
| 17 | 0 | super(); |
| 18 | 0 | } |
| 19 | |
public InvalidValueException(String message) { |
| 20 | 44 | super(message); |
| 21 | 44 | } |
| 22 | |
public InvalidValueException(Throwable cause) { |
| 23 | 0 | super(cause); |
| 24 | 0 | } |
| 25 | |
public InvalidValueException(String message, Throwable cause) { |
| 26 | 0 | super(message, cause); |
| 27 | 0 | } |
| 28 | |
} |