KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > jcr > config > RepositoryConfigurationException


1 /***************************************************************************
2  * Copyright 2001-2003 The eXo Platform SARL All rights reserved. *
3  * Please look at license.txt in info directory for more license detail. *
4  **************************************************************************/

5
6 package org.exoplatform.services.jcr.config;
7
8 /**
9  * Created by The eXo Platform SARL .
10  *
11  * @author <a HREF="mailto:geaz@users.sourceforge.net">Gennady Azarenkov</a>
12  * @version $Id: RepositoryConfigurationException.java,v 1.2 2004/07/24 00:16:20 benjmestrallet Exp $
13  */

14
15 /**
16  * This exception is thrown when condition occurred
17  */

18 public class RepositoryConfigurationException extends Exception JavaDoc {
19   /**
20    * Constructs an Exception without a message.
21    */

22   public RepositoryConfigurationException() {
23     super();
24   }
25
26   /**
27    * Constructs an Exception with a detailed message.
28    *
29    * @param Message The message associated with the exception.
30    */

31   public RepositoryConfigurationException(String JavaDoc message) {
32     super(message);
33   }
34 }
35
Popular Tags