AuthenticationException.java 209 B

1234567
  1. package com.izouma.uwip.exception;
  2. public class AuthenticationException extends RuntimeException {
  3. public AuthenticationException(String message, Throwable cause) {
  4. super(message, cause);
  5. }
  6. }