package com.aps.common.core.exception; /** * 内部认证异常 * * @author ruoyi */ public class InnerAuthException extends RuntimeException { private static final long serialVersionUID = 1L; public InnerAuthException(String message) { super(message); } }