blob: edf20499f31b697829a825207a04fdf81379d729 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package exceptions;
/**
* The Interface VSNegativeNumberException, this exception is thrown if
* a negative number has returned if a positive number has been expected.
*
* @author Paul C. Buetow
*/
public class VSNegativeNumberException extends Exception {
/** The serial version uid */
private static final long serialVersionUID = 1L;
}
|