=== Summary: 675 files | 7 generated | 484 fresh | 4605 untracked | 4268 adopted | 355 marked | 466 validated-ok | 2+0 stale (sig+body) | 0 skipped | 0 failed | elapsed 11:08:11.442 (40091.44s) ===
This commit is contained in:
@@ -5,12 +5,14 @@ namespace adas_core.Application.Exceptions;
|
||||
/// <summary>
|
||||
/// Exception thrown when a user lacks authorization to perform an operation.
|
||||
/// </summary>
|
||||
/// <!-- aidoc:v1 sig=c33e8e4 -->
|
||||
public class UnauthorizedException : Exception
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="UnauthorizedException"/> class.
|
||||
/// </summary>
|
||||
/// <param name="message">The error message associated with the exception.</param>
|
||||
/// <!-- aidoc:v1 sig=0488051 body=4448e1d -->
|
||||
public UnauthorizedException(HttpEnum.ErrorMessage message) : base(((int)message).ToString())
|
||||
{
|
||||
}
|
||||
@@ -19,6 +21,7 @@ public class UnauthorizedException : Exception
|
||||
/// Initializes a new instance of the <see cref="UnauthorizedException"/> class.
|
||||
/// </summary>
|
||||
/// <param name="message">The message that describes the error.</param>
|
||||
/// <!-- aidoc:v1 sig=f0581f2 body=4448e1d -->
|
||||
public UnauthorizedException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user