blob: 78779967d06db0a96dd7cf60e29dcf7adffec803 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* $Id$ */
package org.noreply.fancydress.status;
/**
* There is a problem with the path.
*/
public class Mix3PathProblemException extends Mix3Exception {
public Mix3PathProblemException(String s) {
super(s);
}
public Mix3PathProblemException(String s, Throwable cause) {
super(s, cause);
}
}
|