com.ericsson.mts.nas.exceptions.DictionaryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mts-nas Show documentation
Show all versions of mts-nas Show documentation
A library to encode and decode NAS protocol data, from and to other formats, like XML
package com.ericsson.mts.nas.exceptions;
public class DictionaryException extends Exception {
public DictionaryException(String message) {
super(message);
}
public DictionaryException(String message, Throwable cause) {
super(message, cause);
}
}