All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.telq.sdk.exceptions.httpExceptions.clientSide.MethodNotAllowed Maven / Gradle / Ivy

There is a newer version: 1.3.4
Show newest version
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