GITLAB

郑军 / nunu

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • nunu
  • ..
  • exception
  • OSSException.java
  • 79dbfcff   first commit Browse Code »
    zhengjun@51feijin.com
    2020-11-02 10:59:58 +0800  
OSSException.java 295 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
package com.brframework.commonoss.exception;

import com.brframework.commonweb.exception.HandleException;

/**
 * @author xu
 * @date 2019/8/21 16:30
 */
public class OSSException extends HandleException {

    public OSSException(){
        super(500, "OSS系统错误", "error_oss");
    }

}