SNRepetitiveException.java 214 Bytes
package com.ectrip.demo.exception;

public class SNRepetitiveException extends Exception{

    public SNRepetitiveException() {}

    public SNRepetitiveException(String message) {
        super(message);
    }

}