View Javadoc

1   package com.panogenesis.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.html"><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 {
14  
15      /***
16       * Constructor for UserExistsException.
17       *
18       * @param message
19       */
20      public UserExistsException(String message) {
21          super(message);
22      }
23  }