
com.opentok.exception.RequestException Maven / Gradle / Ivy
/**
* OpenTok Java SDK
* Copyright (C) 2023 Vonage.
* http://www.tokbox.com
*
* Licensed under The MIT License (MIT). See LICENSE file for more information.
*/
package com.opentok.exception;
/**
* Defines an exception object thrown when an API call to the OpenTok server fails.
*/
public class RequestException extends OpenTokException {
private static final long serialVersionUID = -3852834447530956514L;
/**
* Constructor. Do not use.
*/
public RequestException(String message) {
super(message);
}
/**
* Constructor. Do not use.
*/
public RequestException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy