KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > appfuse > service > UserExistsException


1 package org.appfuse.service;
2
3
4 /**
5  * An exception that is thrown by classes wanting to trap unique
6  * constraint violations. This is used to wrap Spring's
7  * DataIntegrityViolationException so it's checked in the web layer.
8  *
9  * <p><a HREF="UserExistsException.java.htm"><i>View Source</i></a></p>
10  *
11  * @author <a HREF="mailto:matt@raibledesigns.com">Matt Raible</a>
12  */

13 public class UserExistsException extends Exception JavaDoc {
14     private static final long serialVersionUID = 4050482305178810162L;
15
16     /**
17      * Constructor for UserExistsException.
18      *
19      * @param message
20      */

21     public UserExistsException(String JavaDoc message) {
22         super(message);
23     }
24 }
25
Popular Tags