summaryrefslogtreecommitdiffstats
path: root/source/Janrain.OpenId/Server/MalformedTrustRoot.cs
blob: d567e3b925acb16370e7207de79b5bcd3708b043 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections;
using System.Collections.Specialized;
using System.Text;

namespace Janrain.OpenId.Server
{
    public class MalformedTrustRoot : ProtocolException
    {

        #region Constructor(s)

        public MalformedTrustRoot(NameValueCollection query, string text)
            : base(query, text)
        {
        }

        #endregion

    }
}