def delete(self, handler): raise exceptions.MethodNotAllowed('DELETE')
def patch(self, handler): raise exceptions.MethodNotAllowed('PATCH')
def post(self, handler): raise exceptions.MethodNotAllowed('POST')
def put(self, handler): raise exceptions.MethodNotAllowed('PUT')
def get(self, handler): raise exceptions.MethodNotAllowed('GET')