package org.theonefx.wcframework.jdbc.exception; /** * Data access exception thrown when a resource fails completely and the failure is permanent. */ public class NonTransientDataAccessResourceException extends NonTransientDataAccessException { private static final long serialVersionUID = -7230259969751542682L; /** * Constructor for NonTransientDataAccessResourceException. * @param msg the detail message */ public NonTransientDataAccessResourceException(String msg) { super(msg); } /** * Constructor for NonTransientDataAccessResourceException. * @param msg the detail message * @param cause the root cause from the data access API in use */ public NonTransientDataAccessResourceException(String msg, Throwable cause) { super(msg, cause); } }