예제 #1
0
		GraphError(Error.Level level, string title, string message, params string[] arguments) :
			base(level, title, message, arguments)
		{
		}
예제 #2
0
		internal Abstract(System.Exception innerException, Error.Level level, string title, string message, params string[] arguments) : base(innerException, level, title, message, arguments) { }
		public FilterNotFound(Error.Level level, string filter, string message)
			: base(level, "Unable to Find Filter.", "Filter \"{0}\" does not exist.", filter, message)
		{ }
예제 #4
0
		internal Abstract(Error.Level level, string title, string message, params string[] arguments) : this(null, level, title, message, arguments) { }