1 10 11 package com.triactive.jdo.store; 12 13 import javax.jdo.JDOFatalDataStoreException; 14 15 16 26 27 public class UnsupportedDataTypeException extends JDOFatalDataStoreException 28 { 29 33 34 public UnsupportedDataTypeException() 35 { 36 super(); 37 } 38 39 40 46 47 public UnsupportedDataTypeException(String msg) 48 { 49 super(msg); 50 } 51 52 53 60 61 public UnsupportedDataTypeException(String msg, Exception nested) 62 { 63 super(msg, nested); 64 } 65 } 66 | Popular Tags |