[jboss-identity-commits] JBoss Identity SVN: r16 - in trunk/identity-api/src/main/java/org/jboss/identity/api: exception and 1 other directory.

jboss-identity-commits at lists.jboss.org jboss-identity-commits at lists.jboss.org
Thu Jul 10 13:48:31 EDT 2008


Author: anil.saldhana at jboss.com
Date: 2008-07-10 13:48:31 -0400 (Thu, 10 Jul 2008)
New Revision: 16

Added:
   trunk/identity-api/src/main/java/org/jboss/identity/api/exception/
   trunk/identity-api/src/main/java/org/jboss/identity/api/exception/IdentityException.java
Log:
JBID-7: exception api

Added: trunk/identity-api/src/main/java/org/jboss/identity/api/exception/IdentityException.java
===================================================================
--- trunk/identity-api/src/main/java/org/jboss/identity/api/exception/IdentityException.java	                        (rev 0)
+++ trunk/identity-api/src/main/java/org/jboss/identity/api/exception/IdentityException.java	2008-07-10 17:48:31 UTC (rev 16)
@@ -0,0 +1,54 @@
+/*
+ * JBoss, Home of Professional Open Source.
+ * Copyright 2008, Red Hat Middleware LLC, and individual contributors
+ * as indicated by the @author tags. See the copyright.txt file in the
+ * distribution for a full listing of individual contributors. 
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
+package org.jboss.identity.api.exception;
+
+import java.security.GeneralSecurityException;
+
+/**
+ * <p>Identity Exception</p>
+ * @author Anil.Saldhana at redhat.com
+ * @since Jul 10, 2008
+ */
+public class IdentityException extends GeneralSecurityException
+{
+   private static final long serialVersionUID = 1L;
+
+   public IdentityException()
+   {
+      super(); 
+   }
+
+   public IdentityException(String message, Throwable cause)
+   {
+      super(message, cause); 
+   }
+
+   public IdentityException(String msg)
+   {
+      super(msg); 
+   }
+
+   public IdentityException(Throwable cause)
+   {
+      super(cause); 
+   }
+}
\ No newline at end of file




More information about the jboss-identity-commits mailing list