1 13 package info.magnolia.repository; 14 15 import javax.jcr.RepositoryException; 16 17 18 22 public class RepositoryNotInitializedException extends RepositoryException { 23 24 27 private static final long serialVersionUID = 222L; 28 29 public RepositoryNotInitializedException(String message) { 30 super(message); 31 } 32 33 public RepositoryNotInitializedException(String message, Exception cause) { 34 super(message, (cause instanceof RepositoryNotInitializedException) 35 ? ((RepositoryNotInitializedException) cause).getCause() 36 : cause); 37 } 38 39 public RepositoryNotInitializedException(Throwable root) { 40 super(root); 41 } 42 } 43 | Popular Tags |