blob: 19c2b82682f622747a270f8789f35d2e248fd545 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package exceptions;
/**
* The Interface VSParseIntegerVectorException, this exception is thrown if
* the VSAbstractEditor is not able to parse the vector fields input of the
* user.
*
* @author Paul C. Buetow
*/
public class VSParseIntegerVectorException extends Exception {
/** The serial version uid */
private static final long serialVersionUID = 1L;
}
|