1 4 package com.openedit.store; 5 6 import com.openedit.OpenEditException; 7 8 9 13 public class StoreException extends OpenEditException 14 { 15 16 19 private static final long serialVersionUID = 6500274868025584114L; 20 23 public StoreException(Exception inEx) 24 { 25 super(inEx); 26 } 27 public StoreException() 28 { 29 super(); 30 } 31 34 public StoreException(String inString) 35 { 36 super(inString); 37 } 38 39 } 40 | Popular Tags |