1 package com.ontotext.ordi.wsmo4rdf.remote.exception; 2 3 import java.security.GeneralSecurityException; 4 5 public class AuthenticationFailedException extends GeneralSecurityException { 6 7 private static final long serialVersionUID = 1L; 8 9 public AuthenticationFailedException() { 10 super(); 11 } 12 13 public AuthenticationFailedException(String message) { 14 super(message); 15 } 16 17 public AuthenticationFailedException(String message, Throwable cause) { 18 super(message, cause); 19 } 20 21 public AuthenticationFailedException(Throwable cause) { 22 super(cause); 23 } 24 25 }