1 package org.argosfields.service;
2
3 /***
4 * AccountCreationNotAllowedException.java
5 * @author Xavier Cho
6 * @version $Revision: 1.1 $ $Date: 2004/04/15 05:43:38 $
7 */
8 public class CreateAccountNotAllowedException extends CreateAccountException {
9
10 public CreateAccountNotAllowedException() {
11 super();
12 }
13
14 /***
15 * @param message
16 */
17 public CreateAccountNotAllowedException(final String message) {
18 super(message);
19 }
20 }
This page was automatically generated by Maven