1 /*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5
6 package com.rc.celeritas.exception;
7
8 /**
9 *
10 * @author rchoudhary
11 */
12 public class LessColumnInLookupSQLException extends CeleritasException {
13
14 /**
15 *
16 */
17 public LessColumnInLookupSQLException() {
18 super();
19 }
20
21 /**
22 *
23 * @param message
24 */
25 public LessColumnInLookupSQLException(String message){
26 super(message);
27 }
28
29 /**
30 *
31 * @param t
32 */
33 public LessColumnInLookupSQLException(Throwable t){
34 super(t);
35 }
36 }