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

org.apache.ibatis.cache.CacheException Maven / Gradle / Ivy

package org.apache.ibatis.cache;

import org.apache.ibatis.exceptions.PersistenceException;

public class CacheException extends PersistenceException {

  private static final long serialVersionUID = -193202262468464650L;

  public CacheException() {
    super();
  }

  public CacheException(String message) {
    super(message);
  }

  public CacheException(String message, Throwable cause) {
    super(message, cause);
  }

  public CacheException(Throwable cause) {
    super(cause);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy