Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/exception/OseeInvalidAuthenticationProtocolException.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/exception/OseeInvalidAuthenticationProtocolException.java10
1 files changed, 0 insertions, 10 deletions
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/exception/OseeInvalidAuthenticationProtocolException.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/exception/OseeInvalidAuthenticationProtocolException.java
index a32454abee9..7a22bca9ef1 100644
--- a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/exception/OseeInvalidAuthenticationProtocolException.java
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/exception/OseeInvalidAuthenticationProtocolException.java
@@ -17,24 +17,14 @@ public class OseeInvalidAuthenticationProtocolException extends OseeAuthenticati
private static final long serialVersionUID = 1890728724625261131L;
- /**
- * @param message
- * @param cause
- */
public OseeInvalidAuthenticationProtocolException(String message, Throwable cause) {
super(message, cause);
}
- /**
- * @param message
- */
public OseeInvalidAuthenticationProtocolException(String message) {
super(message);
}
- /**
- * @param cause
- */
public OseeInvalidAuthenticationProtocolException(Throwable cause) {
super(cause);
}

Back to the top