File: SignatureRequiredException.cs

package info (click to toggle)
libflickrnet 25277-6
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 628 kB
  • ctags: 1,355
  • sloc: cs: 7,136; makefile: 24; sh: 13; ansic: 6
file content (14 lines) | stat: -rw-r--r-- 355 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace FlickrNet
{
	/// <summary>
	/// Thrown when a method requires a valid signature but no shared secret has been supplied.
	/// </summary>
	public class SignatureRequiredException : FlickrException
	{
		internal SignatureRequiredException() : base("Method requires signing but no shared secret supplied.")
		{
		}
	}
}