cz.mmsparams.api.exceptions.SmscException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of MmsParamsAPI Show documentation
Show all versions of MmsParamsAPI Show documentation
Common library for MmsParams system
The newest version!
package cz.mmsparams.api.exceptions;
import java.io.Serializable;
import cz.mmsparams.api.websocket.model.error.TestErrorType;
public class SmscException extends MmsParamsExceptionBase implements Serializable
{
public SmscException()
{
setTestErrorType(TestErrorType.SMSC);
}
public SmscException(String message)
{
super(message);
setTestErrorType(TestErrorType.SMSC);
}
public SmscException(String message, Throwable cause)
{
super(message, cause);
setTestErrorType(TestErrorType.SMSC);
}
public SmscException(Throwable cause)
{
super(cause);
setTestErrorType(TestErrorType.SMSC);
}
public SmscException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
{
super(message, cause, enableSuppression, writableStackTrace);
setTestErrorType(TestErrorType.SMSC);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy