summaryrefslogtreecommitdiff
path: root/Gestor.Common/Gestor.Common.Exceptions/PermissionException.cs
blob: e5249f992afdb45bc4b1f83dd3982e5fe8e98642 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

namespace Gestor.Common.Exceptions;

public class PermissionException : Exception
{
	public PermissionException()
	{
	}

	public PermissionException(string message)
		: base(message)
	{
	}
}