Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
StatusAuthenticationFailed
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace BO\Zmsbackend\Status\Exception;
4
5/**
6 * Thrown when /status/ is called without a valid workstation login or X-Token.
7 */
8class StatusAuthenticationFailed extends \Exception
9{
10    protected $code = 401;
11
12    protected $message = 'Authentication failed - access to status not granted';
13}