blob: 27c754d86dd450f77ab8122002670de19e90e730 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package com.c2kernel.lookup;
public class InvalidEntityPathException extends Exception {
public InvalidEntityPathException() {
super();
}
public InvalidEntityPathException(String msg) {
super(msg);
}
}
|