11 lines
		
	
	
		
			224 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			224 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace itguild\forms\form\exceptions;
 | 
						|
 | 
						|
class FormResultNotFoundException extends \Exception
 | 
						|
{
 | 
						|
    function __construct($id)
 | 
						|
    {
 | 
						|
        $this -> message = "Ответ формы  $id не найдена";
 | 
						|
    }
 | 
						|
} |