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 ImpleoAlreadyExistException extends CeleritasException{
13
14 /**
15 *
16 */
17 public ImpleoAlreadyExistException() {
18 super();
19 }
20
21 /**
22 *
23 * @param t
24 */
25 public ImpleoAlreadyExistException(Throwable t) {
26 super(t);
27 }
28
29 /**
30 *
31 * @param message
32 */
33 public ImpleoAlreadyExistException(String message) {
34 super(message);
35 }
36 }