com.twilio.twiml.TwiMLException 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.twiml;
/**
* The Class TwiMLException.
*/
@SuppressWarnings("checkstyle:abbreviationaswordinname")
public class TwiMLException extends Exception {
private static final long serialVersionUID = -2688644569829574015L;
/**
* Instantiates a new twi ml exception.
*
* @param arg0 the arg0
*/
public TwiMLException(final String arg0) {
super(arg0);
}
}