Esempio n. 1
0
 public NoMethodError(string methodName, eeObjectType objType)
     : base("NoMethodError", $"Method with name '{methodName}' does not exist for object of type {ObjectTypeHelpers.ObjectTypeToString(objType)}")
 {
 }
Esempio n. 2
0
 public NegationError(eeObjectType type, bool not = false)
     : base("NegationError", $"Cannot negate object {(not ? "that is not" : "")} of type {ObjectTypeHelpers.ObjectTypeToString(type)}.")
 {
 }