com.twilio.sdk.exception.TwilioException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twilio-java-sdk Show documentation
Show all versions of twilio-java-sdk Show documentation
Release Candidate for Next-Gen Twilio Java Helper Library
The newest version!
package com.twilio.sdk.exception;
public abstract class TwilioException extends RuntimeException {
private static final long serialVersionUID = 2516935680980388130L;
public TwilioException(final String message) {
this(message, null);
}
public TwilioException(final String message, final Throwable cause) {
super(message, cause);
}
}