• This project
    • Loading...
  • Sign in

crp / crp-operation

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • crp-operation
  • ..
  • exception
  • BaseException.java
  • 异常处理 · 0e1d6131
    0e1d6131 Browse Files
    wanghongbo authored 2025-08-01 11:24:45 +0800
BaseException.java 366 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package com.wondertek.exception;

public class BaseException extends RuntimeException{
    private static final long serialVersionUID = 4738191554323702328L;

    protected final String code;

    public String getCode() {
        return code;
    }
    
    public BaseException(String code, String msg) {
        super(msg);
        this.code = code;
    }
    
}