com.telq.sdk.exceptions.httpExceptions.clientSide.MethodNotAllowed Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
SDK used for accessing to TelQ Telecom platform API
package com.telq.sdk.exceptions.httpExceptions.clientSide;
public class MethodNotAllowed extends Exception {
public MethodNotAllowed(String message) {
super("ERROR CODE: [405][Method Not Allowed -- You tried to access a address with an invalid method.]: " + message);
}
public MethodNotAllowed() {
super("ERROR CODE: [405][Method Not Allowed -- You tried to access a address with an invalid method.]");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy