예제 #1
0
 public TableNotFoundException(String schemaName, String tableName, long timestamp) {
   super(
       new SQLExceptionInfo.Builder(code)
           .setSchemaName(schemaName)
           .setTableName(tableName)
           .build()
           .toString(),
       code.getSQLState(),
       code.getErrorCode(),
       null);
   this.tableName = tableName;
   this.schemaName = schemaName;
   this.timestamp = timestamp;
 }
 public AmbiguousTableException(String tableName, Throwable cause) {
   super(
       new SQLExceptionInfo.Builder(code).setTableName(tableName).toString(),
       code.getSQLState(),
       cause);
 }
 public AmbiguousTableException() {
   super(new SQLExceptionInfo.Builder(code).build().toString(), code.getSQLState());
 }