From b11514fdc16007b6d4a4f4046ab19175313103cb Mon Sep 17 00:00:00 2001
From: Michael Simon <simon@kit.edu>
Date: Mon, 23 Sep 2024 09:35:23 +0200
Subject: [PATCH] ISSUE-196 remove double class

---
 .../saml/exc/SamlAuthenticationException.java | 31 -------------------
 1 file changed, 31 deletions(-)
 delete mode 100644 bwreg-service/src/main/java/edu/kit/scc/webreg/service/saml/exc/SamlAuthenticationException.java

diff --git a/bwreg-service/src/main/java/edu/kit/scc/webreg/service/saml/exc/SamlAuthenticationException.java b/bwreg-service/src/main/java/edu/kit/scc/webreg/service/saml/exc/SamlAuthenticationException.java
deleted file mode 100644
index 46c94334b..000000000
--- a/bwreg-service/src/main/java/edu/kit/scc/webreg/service/saml/exc/SamlAuthenticationException.java
+++ /dev/null
@@ -1,31 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2014 Michael Simon.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the GNU Public License v3.0
- * which accompanies this distribution, and is available at
- * http://www.gnu.org/licenses/gpl.html
- * 
- * Contributors:
- *     Michael Simon - initial
- ******************************************************************************/
-package edu.kit.scc.webreg.service.saml.exc;
-
-import java.io.Serializable;
-
-public class SamlAuthenticationException extends Exception implements Serializable {
-
-	private static final long serialVersionUID = 1L;
-
-	public SamlAuthenticationException(String msg) {
-		super(msg);
-	}
-
-	public SamlAuthenticationException(String msg, Throwable t) {
-		super(msg, t);
-	}
-
-	public SamlAuthenticationException(Throwable t) {
-		super(t);
-	}
-
-}
-- 
GitLab