审查视图

src/main/java/com/tianbo/analysis/exception/TransArriveException.java 426 字节
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
package com.tianbo.analysis.exception;

public class TransArriveException extends Exception {

    public TransArriveException(){
        super();
    }

    public TransArriveException(String errMessage){
        super(errMessage);
    }

    public TransArriveException(String message, Throwable cause) {
        super(message, cause);
    }

    public TransArriveException(Throwable cause) {
        super(cause);
    }
}