AuthenticationException.java 217 B

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