
com.sipgate.siptest.exception.UnexpectedSiptestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sip-test Show documentation
Show all versions of sip-test Show documentation
Simple softphone for sip testing purposes.
package com.sipgate.siptest.exception;
public class UnexpectedSiptestException extends RuntimeException {
public UnexpectedSiptestException() {
}
public UnexpectedSiptestException(String message) {
super(message);
}
public UnexpectedSiptestException(String message, Throwable cause) {
super(message, cause);
}
public UnexpectedSiptestException(Throwable cause) {
super(cause);
}
public UnexpectedSiptestException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy