UnauthorizedException constructor
UnauthorizedException(
- String message, {
- dynamic details,
Implementation
UnauthorizedException(
super.message, {
super.details,
}) : super(
statusCode: 401,
title: 'Unauthorized',
type: 'unauthorized',
);