![JAR search and dependency download from the Maven repository](/logo.png)
com.urbanairship.api.client.ServerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
The Urban Airship Java client library
/*
* 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