1 18 package org.objectweb.perseus.persistence.api; 19 20 24 public class NoDSIPersistenceException extends PersistenceException { 25 26 public NoDSIPersistenceException() { 27 } 28 29 public NoDSIPersistenceException(String msg) { 30 super(msg); 31 } 32 33 public NoDSIPersistenceException(Exception nested) { 34 super(nested); 35 } 36 37 public NoDSIPersistenceException(String msg, Exception nested) { 38 super(msg, nested); 39 } 40 } 41 | Popular Tags |