1 56 package org.objectstyle.cayenne.pref; 57 58 63 public class PreferenceException extends RuntimeException { 64 65 public PreferenceException() { 66 super(); 67 } 68 69 public PreferenceException(String message) { 70 super(message); 71 } 72 73 public PreferenceException(String message, Throwable cause) { 74 super(message, cause); 75 } 76 77 public PreferenceException(Throwable cause) { 78 super(cause); 79 } 80 81 } | Popular Tags |