コード例 #1
0
ファイル: JTable.cs プロジェクト: windygu/Justin
 public FieldValueTypeNotSupportOperatorException(string filedName, JFieldType valueType, string operate)
     : base(string.Format("{0}不支持{1},Filed:{2}", valueType.ToString(), operate, filedName))
 {
 }
コード例 #2
0
ファイル: JTable.cs プロジェクト: windygu/Justin
 public FieldValueTypeNotSupportValueCategroyException(string filedName, JFieldType valueType, JValueCategroy sourceValueCategroy)
     : base(string.Format("{0}不支持{1},Filed:{2}", valueType.ToString(), sourceValueCategroy.ToString(), filedName))
 {
 }
コード例 #3
0
ファイル: JTable.cs プロジェクト: windygu/Justin
 private NotSupportedException GetException(string filedName, JFieldType valueType, JValueCategroy sourceValueCategroy)
 {
     throw new NotSupportedException(string.Format("{0}不支持{1},Filed:{2}", valueType.ToString(), sourceValueCategroy.ToString(), filedName));
 }
コード例 #4
0
ファイル: JTable.cs プロジェクト: piaolingzxh/Justin
 public FieldValueTypeNotSupportValueCategroyException(string filedName, JFieldType valueType, JValueCategroy sourceValueCategroy)
     : base(string.Format("{0}不支持{1},Filed:{2}", valueType.ToString(), sourceValueCategroy.ToString(), filedName))
 {
 }
コード例 #5
0
ファイル: JTable.cs プロジェクト: piaolingzxh/Justin
 private NotSupportedException GetException(string filedName, JFieldType valueType, JValueCategroy sourceValueCategroy)
 {
     throw new NotSupportedException(string.Format("{0}不支持{1},Filed:{2}", valueType.ToString(), sourceValueCategroy.ToString(), filedName));
 }
コード例 #6
0
ファイル: JTable.cs プロジェクト: piaolingzxh/Justin
 public FieldValueTypeNotSupportOperatorException(string filedName, JFieldType valueType, string operate)
     : base(string.Format("{0}不支持{1},Filed:{2}", valueType.ToString(), operate, filedName))
 {
 }