Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

wangzhen / shiro-test

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • shiro-test
  • ..
  • exception
  • BaseException.java
  • wangzhen's avatar
    first commit · 752e297f
    wangzhen committed Aug 28, 2024
    752e297f
BaseException.java 286 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package com.myxrk.rbac.exception;

import lombok.Data;

@Data
public class BaseException extends RuntimeException{
    private int code;
    private String message;

    public BaseException(int code, String message) {
        this.code = code;
        this.message = message;
    }

}