xref: /plugin/struct/meta/ValidationException.php (revision 17560ecbb3470cf2f90ee861205d92f6adf36b5b)
1*17560ecbSAndreas Gohr<?php
2*17560ecbSAndreas Gohr
3*17560ecbSAndreas Gohrnamespace plugin\struct\meta;
4*17560ecbSAndreas Gohr
5*17560ecbSAndreas Gohr/**
6*17560ecbSAndreas Gohr * Class ValidationException
7*17560ecbSAndreas Gohr *
8*17560ecbSAndreas Gohr * Used to signal validation exceptions
9*17560ecbSAndreas Gohr *
10*17560ecbSAndreas Gohr * @package plugin\struct\meta
11*17560ecbSAndreas Gohr */
12*17560ecbSAndreas Gohrclass ValidationException extends StructException {
13*17560ecbSAndreas Gohr    protected $trans_prefix = 'Validation Exception';
14*17560ecbSAndreas Gohr}
15