1 <?php
2 /**
3 * @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl>
4 */
5 namespace Team3\PayU\Communication\Process;
6
7 use Team3\PayU\PayUException;
8
9 /**
10 * This exception will be thrown when {@link RequestProcessInterface} will fail.
11 *
12 * Class RequestProcessException
13 * @package Team3\PayU\Communication\Process
14 */
15 class RequestProcessException extends PayUException
16 {
17 }
18