1 7 8 package java.util.prefs; 9 10 import java.io.NotSerializableException ; 11 12 21 public class BackingStoreException extends Exception { 22 27 public BackingStoreException(String s) { 28 super(s); 29 } 30 31 36 public BackingStoreException(Throwable cause) { 37 super(cause); 38 } 39 40 private static final long serialVersionUID = 859796500401108469L; 41 } 42 | Popular Tags |