forked from ddrilling/AsbCloudServer
23 lines
413 B
C#
23 lines
413 B
C#
using System;
|
|
|
|
namespace AsbCloudApp.Exceptions;
|
|
|
|
/// <summary>
|
|
/// Access denied exception
|
|
/// </summary>
|
|
public class ForbidException : Exception
|
|
{
|
|
/// <summary>
|
|
/// Access denied exception
|
|
/// </summary>
|
|
public ForbidException()
|
|
: base() { }
|
|
|
|
/// <summary>
|
|
/// Access denied exception
|
|
/// </summary>
|
|
public ForbidException(string message)
|
|
: base(message) { }
|
|
|
|
}
|