1 package net.sf.sapjcosupport.jdbc;
2
3 import org.apache.commons.lang.enums.ValuedEnum;
4
5 /**
6 * Created by IntelliJ IDEA.
7 * User: NDE1677
8 * Date: Jul 6, 2006
9 * Time: 2:02:17 PM
10 * To change this template use File | Settings | File Templates.
11 */
12 public class SqlErrorCodes extends ValuedEnum {
13 public static final SqlErrorCodes MissingConnectionProperty = new SqlErrorCodes("Missing property for connection",
14 -100);
15 public static final SqlErrorCodes ErrorCreatingConnection = new SqlErrorCodes("Error creating new connection",
16 -200);
17
18 public SqlErrorCodes(String string, int i) {
19 super(string, i);
20 }
21 }