1 23 package com.sun.appserv.management.client.prefs; 24 25 28 public class StoreException extends Exception { 29 static final long serialVersionUID = 8911126457304139178L; 30 31 34 public StoreException() { 35 } 36 37 38 42 public StoreException(final String msg) { 43 super(msg); 44 } 45 46 public StoreException(final Throwable t) { 47 super(t); 48 } 49 50 public StoreException(final String msg, final Throwable t) { 51 super (msg, t); 52 } 53 } | Popular Tags |