final move of files
[web.mtrack] / MTrack / Exception / Authorization.php
1 <?php 
2 class MTrackAuthorizationException extends Exception {
3   public $rights;
4   function __construct($msg, $rights) {
5     parent::__construct($msg);
6     $this->rights = $rights;
7   }
8 }