final move of files
[web.mtrack] / MTrack / Exception / Veto.php
1 <?php
2
3
4 class MTrackVetoException extends Exception {
5   public $reasons;
6
7   function __construct($reasons) {
8     $this->reasons = $reasons;
9     parent::__construct(join("\n", $reasons));
10   }
11 }