1 18 package org.objectweb.perseus.persistence.api; 19 20 26 public class PersistentObjectLifeCycleExcpetion extends PersistenceException { 27 28 public final static String UNEXPORT_NPO_MSG = "Impossible to remove a non persistent object"; 29 public final static String READ_NPO_MSG = "Impossible to read a non persistent object"; 30 public final static String WRITE_NPO_MSG = "Impossible to write a non persistent object"; 31 32 public PersistentObjectLifeCycleExcpetion() { 33 } 34 35 public PersistentObjectLifeCycleExcpetion(String msg) { 36 super(msg); 37 } 38 39 public PersistentObjectLifeCycleExcpetion(Exception nested) { 40 super(nested); 41 } 42 43 public PersistentObjectLifeCycleExcpetion(String msg, Exception nested) { 44 super(msg, nested); 45 } 46 } 47 | Popular Tags |