예제 #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
 public FieldValueTypeNotSupportValueCategroyException(string filedName, JFieldType valueType, JValueCategroy sourceValueCategroy)
     : base(string.Format("{0}不支持{1},Filed:{2}", valueType.ToString(), sourceValueCategroy.ToString(), filedName))
 {
 }
예제 #5
0
 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
 public FieldValueTypeNotSupportOperatorException(string filedName, JFieldType valueType, string operate)
     : base(string.Format("{0}不支持{1},Filed:{2}", valueType.ToString(), operate, filedName))
 {
 }