1 package uba.db.table;
2
3 public class InvalidTableNameException extends RuntimeException {
4
5 public InvalidTableNameException() {
6 super();
7 // TODO Auto-generated constructor stub
8 }
9
10 public InvalidTableNameException(String message) {
11 super(message);
12 // TODO Auto-generated constructor stub
13 }
14
15 public InvalidTableNameException(String message, Throwable cause) {
16 super(message, cause);
17 // TODO Auto-generated constructor stub
18 }
19
20 public InvalidTableNameException(Throwable cause) {
21 super(cause);
22 // TODO Auto-generated constructor stub
23 }
24
25 }