Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
TranslationException
n/a
0 / 0
n/a
0 / 0
0
n/a
0 / 0
1<?php
2declare(strict_types=1);
3
4namespace App\Service\Api\Google;
5
6use Exception;
7
8/**
9 * TranslationException
10 *
11 * Exception thrown when translation operations fail in the Google API service.
12 */
13class TranslationException extends Exception
14{
15}