All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.urbanairship.api.client.ServerException Maven / Gradle / Ivy

There is a newer version: 9.5.0
Show newest version
/*
 * Copyright (c) 2013-2016.  Urban Airship and Contributors
 */


package com.urbanairship.api.client;

/**
 * Exception thrown when the client fails to connect to the API after retrying on 5xxs.
 */
public class ServerException extends RuntimeException {

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

    public ServerException(String msg, Exception e) {
        super(msg, e);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy