コード例 #1
0
ファイル: ModelException.cs プロジェクト: AlineGuan/odata.net
		public ModelException(ModelItem item, string message, Exception inner)
			: this(item, message, inner, null)
		{
			//Delegate
		}
コード例 #2
0
ファイル: ModelException.cs プロジェクト: AlineGuan/odata.net
        public ModelException(ModelItem source, string message, Exception inner, List<ModelActionInfo>   actions)
			: base(source != null ? (source.FullName + ": " + message) : message, inner)
		{
		}
コード例 #3
0
ファイル: ModelException.cs プロジェクト: AlineGuan/odata.net
		//Constructors
		public ModelException(ModelItem item, string message)
			: this(item, message, null, null)
		{
			//Delegate
		}