1 16 17 package org.apache.jetspeed.services.security; 18 19 26 27 public class NotUniqueUserException extends UserException { 28 29 33 public NotUniqueUserException() { 34 super(); 35 } 36 37 46 public NotUniqueUserException(String msg) { 47 super(msg); 48 } 49 50 57 public NotUniqueUserException( String msg, Throwable nested ) 58 { 59 super(msg, nested); 60 } 61 62 } | Popular Tags |