1 23 24 29 30 package com.sun.jdo.api.persistence.support; 31 32 37 public class JDOFatalDataStoreException extends JDOFatalException { 38 39 42 public JDOFatalDataStoreException() { 43 } 44 45 46 50 public JDOFatalDataStoreException(String msg) { 51 super(msg); 52 } 53 54 59 public JDOFatalDataStoreException(String msg, Exception nested) { 60 super(msg, nested); 61 } 62 } 63 64 | Popular Tags |