Skip to content
This repository has been archived by the owner on Mar 2, 2021. It is now read-only.

Commit

Permalink
added no such row found exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Klauenbosch committed Jul 10, 2017
1 parent 46d8b33 commit 23f494c
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?php

namespace ChrisAndChris\Common\RowMapperBundle\Exceptions\Database;

use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;

/**
* Indicates that there was no matching row found
*
* LEGACY: Does extend NotFoundHttpException - to be removed/changed in >=v2.2
*
* @name NoSuchRowFoundException
* @version 1.0.0
* @since 1.0.0
* @package RowMapperBundle
* @author ChrisAndChris
* @link https://github.com/chrisandchris
*/
class NoSuchRowFoundException extends NotFoundHttpException
{

}

0 comments on commit 23f494c

Please sign in to comment.