BackupException.java 455 Bytes
Newer Older
张强 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package com.jeecms.backup.exception;

/**
 * @author Zhu Kaixiao
 * @version 1.0
 * @date 2019/8/3 14:42
 * @copyright 江西金磊科技发展有限公司 All rights reserved. Notice
 * 仅限于授权后使用,禁止非授权传阅以及私自用于商业目的。
 */
public class BackupException extends RuntimeException {

    public BackupException() {
    }

    public BackupException(String msg) {
        super(msg);
    }
}