1<?php 2 3declare(strict_types=1); 4 5namespace JMS\Serializer\Tests\Fixtures; 6 7use JMS\Serializer\Annotation as Serializer; 8 9/** 10 * @Serializer\Exclude("NONE") 11 */ 12class SimpleInternalObject extends \Exception 13{ 14 private $bar; 15 16 protected $camelCase = 'boo'; 17 18 public function __construct($foo, $bar) 19 { 20 parent::__construct($foo); 21 $this->bar = $bar; 22 } 23} 24