Inheritance: System.Exception
示例#1
0
		public virtual JsonLdError SetType(JsonLdError.Error error)
		{
			this.type = error;
			return this;
		}
示例#2
0
		public JsonLdError(JsonLdError.Error type) : base(string.Empty)
		{
			this.type = type;
		}
示例#3
0
		public JsonLdError(JsonLdError.Error type, object detail) : base(detail == null ? 
			string.Empty : detail.ToString())
		{
			// TODO: pretty toString (e.g. print whole json objects)
			this.type = type;
		}