MethodNotAllowedException constructor

MethodNotAllowedException({
  1. String? message,
  2. StackTrace? stackTrace,
})

Implementation

MethodNotAllowedException({String? message, StackTrace? stackTrace})
    : super(
        StatusCode.METHOD_NOT_ALLOWED,
        message: message,
        stackTrace: stackTrace,
      );