1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| //
| // Source code recreated from a .class file by IntelliJ IDEA
| // (powered by FernFlower decompiler)
| //
|
| package org.jeecg.modules.doc.exception;
|
| public class UFOPException extends RuntimeException {
| public UFOPException(Throwable cause) {
| super("统一文件操作平台(UFOP)出现异常", cause);
| }
|
| public UFOPException(String message) {
| super(message);
| }
|
| public UFOPException(String message, Throwable cause) {
| super(message, cause);
| }
| }
|
|