summaryrefslogtreecommitdiff
path: root/Errors/InvalidInputError.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Errors/InvalidInputError.cs')
-rw-r--r--Errors/InvalidInputError.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/Errors/InvalidInputError.cs b/Errors/InvalidInputError.cs
new file mode 100644
index 0000000..2df2e55
--- /dev/null
+++ b/Errors/InvalidInputError.cs
@@ -0,0 +1,7 @@
+namespace BackendPIA.Errors {
+ public class InvalidInputError : ErrorBase {
+ public int Status { get { return base.Status; } }
+ public string Message { get { return base.Message; }}
+ public InvalidInputError(int status, string message) : base(status, message) {}
+ }
+} \ No newline at end of file