File: FlickrException.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 (23 lines) | stat: -rw-r--r-- 407 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using System;

namespace FlickrNet
{
	/// <summary>
	/// Generic Flickr.Net Exception.
	/// </summary>
	[Serializable]
	public class FlickrException : Exception
	{
		internal FlickrException()
		{
		}

		internal FlickrException(string message) : base(message)
		{
		}

		internal FlickrException(string message, Exception innerException) : base(message, innerException)
		{
		}
	}
}