Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
ProcessNotPending
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2
3namespace BO\Zmsadmin\Exception\Process;
4
5/**
6 * example class to generate an exception
7 */
8class ProcessNotPending extends \Exception
9{
10    protected $code = 428;
11    protected $message = 'Process has not status pending, its not allowed to call it as pickup';
12}