com.hextremelabs.ussd.exception.UINavigationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lib-ussd Show documentation
Show all versions of lib-ussd Show documentation
A lightweight USSD application framework
The newest version!
package com.hextremelabs.ussd.exception;
/**
* Indicates that there was an error in screen navigation (if the next screen could not be found).
*
* @author Sayo Oladeji
*/
public class UINavigationException extends Exception {
private static final long serialVersionUID = 1L;
/**
* Creates a new instance of UINavigationException
without detail message.
*/
public UINavigationException() {
}
/**
* Constructs an instance of UINavigationException
with the specified detail message.
*
* @param msg the detail message.
*/
public UINavigationException(String msg) {
super(msg);
}
}