All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.hdy.common.exceptions.NotLoginException Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version
package com.github.hdy.common.exceptions;

/**
 * 表示未登录
 *
 * @author hdy
 * @date 2019/6/25
 */
public class NotLoginException extends RuntimeException {
    private static final long serialVersionUID = 1L;

    public NotLoginException() {
        super();
    }

    public NotLoginException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy