View Javadoc
1   package com.github.choonchernlim.security.adfs.saml2;
2   
3   /**
4    * Module specific exception.
5    */
6   public final class SpringSecurityAdfsSaml2Exception extends RuntimeException {
7   
8       SpringSecurityAdfsSaml2Exception(final String message) {
9           super(message);
10      }
11  
12      SpringSecurityAdfsSaml2Exception(final String message, final Throwable cause) {
13          super(message, cause);
14      }
15  }