2017-02-11 22:07:10 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BusinessLogic\Tickets\Exceptions;
|
|
|
|
|
|
|
|
|
2017-09-11 21:03:03 -04:00
|
|
|
class UnableToGenerateTrackingIdException extends \BaseException {
|
2017-02-11 22:07:10 -05:00
|
|
|
public function __construct() {
|
|
|
|
parent::__construct("Error generating a unique ticket ID.");
|
|
|
|
}
|
|
|
|
}
|