Errors that are thrown when a non-AdX feature is accessed by an AdX customer.
 public function __construct($ComparableValueType = null)
 {
     parent::__construct();
     $this->ComparableValueType = $ComparableValueType;
 }
 public function __construct($ComparableValueType = NULL)
 {
     if (get_parent_class('NumberValue')) {
         parent::__construct();
     }
     $this->ComparableValueType = $ComparableValueType;
 }
 public function __construct($microAmount = NULL, $ComparableValueType = NULL)
 {
     parent::__construct();
     $this->microAmount = $microAmount;
     $this->ComparableValueType = $ComparableValueType;
 }
 public function __construct($microAmount = NULL, $ComparableValueType = NULL)
 {
     if (get_parent_class('Money')) {
         parent::__construct();
     }
     $this->microAmount = $microAmount;
     $this->ComparableValueType = $ComparableValueType;
 }