diff options
Diffstat (limited to 'Codemerx/Gestor.Common/Gestor.Common.Exceptions/PermissionException.cs')
| -rw-r--r-- | Codemerx/Gestor.Common/Gestor.Common.Exceptions/PermissionException.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Common/Gestor.Common.Exceptions/PermissionException.cs b/Codemerx/Gestor.Common/Gestor.Common.Exceptions/PermissionException.cs new file mode 100644 index 0000000..f80f0dc --- /dev/null +++ b/Codemerx/Gestor.Common/Gestor.Common.Exceptions/PermissionException.cs @@ -0,0 +1,15 @@ +using System;
+
+namespace Gestor.Common.Exceptions
+{
+ public class PermissionException : Exception
+ {
+ public PermissionException()
+ {
+ }
+
+ public PermissionException(string message) : base(message)
+ {
+ }
+ }
+}
\ No newline at end of file |