private NotSupportedException GetException(string filedName, JValueType valueType, JValueCategroy sourceValueCategroy) { throw new NotSupportedException(string.Format("{0}不支持{1},Filed:{2}", valueType.ToString(), sourceValueCategroy.ToString(), filedName)); }
public FieldValueTypeNotSupportValueCategroyException(string filedName, JValueType valueType, JValueCategroy sourceValueCategroy) : base(string.Format("{0}不支持{1},Filed:{2}", valueType.ToString(), sourceValueCategroy.ToString(), filedName)) { }
public FieldValueTypeNotSupportOperatorException(string filedName, JValueType valueType, string operate) : base(string.Format("{0}不支持{1},Filed:{2}", valueType.ToString(), operate, filedName)) { }