1 37 38 package com.sun.j2ee.blueprints.signon; 39 40 46 public class SignOnDupKeyException extends RuntimeException { 47 48 public SignOnDupKeyException () { } 49 public SignOnDupKeyException (String str) { super(str); } 50 public SignOnDupKeyException (Throwable cause) { super(cause); } 51 public SignOnDupKeyException (String str, Throwable cause) { super(str, cause); } 52 } 53 | Popular Tags |