summaryrefslogtreecommitdiff
path: root/slips/src/app/Marina/Presentation/PayloadKeyNotFoundException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'slips/src/app/Marina/Presentation/PayloadKeyNotFoundException.cs')
-rw-r--r--slips/src/app/Marina/Presentation/PayloadKeyNotFoundException.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/slips/src/app/Marina/Presentation/PayloadKeyNotFoundException.cs b/slips/src/app/Marina/Presentation/PayloadKeyNotFoundException.cs
new file mode 100644
index 0000000..5cf4279
--- /dev/null
+++ b/slips/src/app/Marina/Presentation/PayloadKeyNotFoundException.cs
@@ -0,0 +1,7 @@
+using System;
+
+namespace Marina.Presentation {
+ public class PayloadKeyNotFoundException : Exception {
+ public PayloadKeyNotFoundException( string key ) : base( "The payload key could not be found: " + key ) {}
+ }
+} \ No newline at end of file