1 7 package org.openedit.repository; 8 9 import com.openedit.OpenEditException; 10 11 17 public class RepositoryException extends OpenEditException 18 { 19 20 23 private static final long serialVersionUID = -4616794535797112530L; 24 25 28 public RepositoryException() 29 { 30 super(); 31 } 33 34 37 public RepositoryException(String message) 38 { 39 super(message); 40 } 42 43 46 public RepositoryException(Throwable cause) 47 { 48 super(cause); 49 } 51 52 56 public RepositoryException(String message, Throwable cause) 57 { 58 super(message, cause); 59 } 61 62 } 63 | Popular Tags |