* @copyright Mollie B.V. * @link https://www.mollie.com */ class Mollie_API_Exception extends Exception { /** * @var string */ protected $_field; /** * @return string */ public function getField () { return $this->_field; } /** * @param string $field */ public function setField ($field) { $this->_field = (string) $field; } }