All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.camunda.bpm.engine.impl.util.ExceptionUtil Maven / Gradle / Ivy

There is a newer version: 7.22.0
Show newest version
package org.camunda.bpm.engine.impl.util;

import org.camunda.bpm.engine.impl.__NotImplemented;

import java.sql.SQLException;

/**
 * Referenced from {@link org.camunda.bpm.engine.impl.errorcode.ExceptionCodeProvider}
 * Real implementation has dependencies to parts of persistence.
 */
public class ExceptionUtil {
  public static boolean checkDeadlockException(SQLException sqlException) {
    throw __NotImplemented.EXCEPTION;
  }

  public static boolean checkForeignKeyConstraintViolation(SQLException sqlException) {
    throw __NotImplemented.EXCEPTION;
  }

  public static boolean checkValueTooLongException(SQLException sqlException) {
    throw __NotImplemented.EXCEPTION;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy