blob: cf33e66447ff8cf37b68e217f107f96669f258f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package org.cristalise.gui.tabs.outcome;
public class InvalidSchemaException extends OutcomeException {
public InvalidSchemaException() {
super();
}
public InvalidSchemaException(String ex) {
super(ex);
}
}
|