old/dekaf-clickhouse/src/main/java/org/jetbrains/dekaf/jdbc/CHouseExceptionRecognizer.java [17:36]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private static final Map<String, Class<? extends DBException>> simpleExceptionMap =
      new HashMap<String, Class<? extends DBException>>();

  static {
    simpleExceptionMap.put("42000", NoTableOrViewException.class);
  }



  @Nullable
  @Override
  protected DBException recognizeSpecificException(@NotNull final SQLException sqle,
                                                   @Nullable final String statementText) {
    String errCode = sqle.getSQLState();
    Class<? extends DBException> simpleExceptionClass = simpleExceptionMap.get(errCode);
    if (simpleExceptionClass != null) {
      return instantiateDBException(simpleExceptionClass, sqle, statementText);
    }
    else {
      return null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



old/dekaf-exasol/src/main/java/org/jetbrains/dekaf/jdbc/ExasolExceptionRecognizer.java [17:36]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  private static final Map<String, Class<? extends DBException>> simpleExceptionMap =
      new HashMap<String, Class<? extends DBException>>();

  static {
    simpleExceptionMap.put("42000", NoTableOrViewException.class);
  }



  @Nullable
  @Override
  protected DBException recognizeSpecificException(@NotNull final SQLException sqle,
                                                   @Nullable final String statementText) {
    String errCode = sqle.getSQLState();
    Class<? extends DBException> simpleExceptionClass = simpleExceptionMap.get(errCode);
    if (simpleExceptionClass != null) {
      return instantiateDBException(simpleExceptionClass, sqle, statementText);
    }
    else {
      return null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



