summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth/ProtocolException.cs
blob: b2bd93f83e30b1dc2f0c1acd63b443ef02f0e891 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace DotNetOAuth {
	[global::System.Serializable]
	public class ProtocolException : Exception {
		public ProtocolException() { }
		public ProtocolException(string message) : base(message) { }
		public ProtocolException(string message, Exception inner) : base(message, inner) { }
		protected ProtocolException(
		  System.Runtime.Serialization.SerializationInfo info,
		  System.Runtime.Serialization.StreamingContext context)
			: base(info, context) { }
	}
}