summaryrefslogtreecommitdiff
path: root/slips/src/app/Marina/Presentation/PayloadKeyNotFoundException.cs
blob: 5cf4279713480b7d9aa2f7c7ace19d02527aa1d4 (plain)
1
2
3
4
5
6
7
using System;

namespace Marina.Presentation {
	public class PayloadKeyNotFoundException : Exception {
		public PayloadKeyNotFoundException( string key ) : base( "The payload key could not be found: " + key ) {}
	}
}