1 package com.instantbank.common.utilcomponents;
2
3
4
11 public interface CommonExceptionMessage {
12
13
14
15 public static final String DB_NOT_FOUND
16 = "Notify the administrator: Datasource not found: ";
17
18 public static final String DB_NOT_CONNECTION
19 = "Notify the administrator: exception while getting Database connection : ";
20
21 public static final String DB_NOT_CLOSING
22 = "Notify the administrator: exception while closing Database connection :";
23
24 public static final String RS_NOT_CLOSING
25 = "Notify the administrator: exception while closing Database Result Set : ";
26
27 public static final String ST_NOT_CLOSING
28 = "Notify the administrator: exception while closing Database Statement : ";
29
30 public static final String PS_NOT_CLOSING
31 = "Notify the administrator: exception while closing Database Prepared Statement : ";
32
33 public static final String CS_NOT_CLOSING
34 = "Notify the administrator: exception while closing Database Callable Statement : ";
35
36 }
37
38