summaryrefslogtreecommitdiffstats
path: root/vendor/ipl/orm/src/Exception/ValueConversionException.php
blob: 499d9f3f5eb6579732d47c09f862e53b9f97d11a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

namespace ipl\Orm\Exception;

use Exception;

/**
 * Exception thrown if values to be converted don't meet their constraints when reading or writing to the database
 */
class ValueConversionException extends Exception
{
}