GatewayTimeoutException.java 229 Bytes
package com.chudiangameplay.android.exception;

/**
 * Created by 0 on 2019/6/19.
 */

public class GatewayTimeoutException extends Throwable {
    public GatewayTimeoutException(String message) {
        super(message);
    }
}