1 56 package org.objectstyle.cayenne.swing; 57 58 import org.objectstyle.cayenne.CayenneRuntimeException; 59 60 63 public class BindingException extends CayenneRuntimeException { 64 65 public BindingException() { 66 super(); 67 } 68 69 public BindingException(String msg) { 70 super(msg); 71 } 72 73 public BindingException(Throwable th) { 74 super(th); 75 } 76 77 public BindingException(String msg, Throwable th) { 78 super(msg, th); 79 } 80 81 } | Popular Tags |