1 package org.jahia.services.cache; 2 3 public class JahiaCacheException extends RuntimeException  4 { 5 6 9 public JahiaCacheException() 10 { 11 super(); 12 } 14 15 18 public JahiaCacheException(String message) 19 { 20 super(message); 21 } 23 24 27 public JahiaCacheException(Throwable cause) 28 { 29 super(cause); 30 } 32 33 37 public JahiaCacheException(String message, Throwable cause) 38 { 39 super(message, cause); 40 } 42 43 } 44 | Popular Tags |