Subversion Repositories Applications.framework

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5 aurelien 1
<?php
2
/**
3
 * An exception thrown if the pattern being processed is not supposed to be
4
 * validating the code in question.
5
 *
6
 * PHP version 5
7
 *
8
 * @category  PHP
9
 * @package   PHP_CodeSniffer
10
 * @author    Greg Sherwood <gsherwood@squiz.net>
11
 * @author    Marc McIntyre <mmcintyre@squiz.net>
12
 * @copyright 2006 Squiz Pty Ltd (ABN 77 084 670 600)
13
 * @license   http://matrix.squiz.net/developer/tools/php_cs/licence BSD Licence
14
 * @version   CVS: $Id: IncorrectPatternException.php,v 1.2 2006/12/12 02:19:03 squiz Exp $
15
 * @link      http://pear.php.net/package/PHP_CodeSniffer
16
 */
17
 
18
/**
19
 * An exception thrown if the pattern being processed is not supposed to be
20
 * validating the code in question.
21
 *
22
 * @category  PHP
23
 * @package   PHP_CodeSniffer
24
 * @author    Greg Sherwood <gsherwood@squiz.net>
25
 * @author    Marc McIntyre <mmcintyre@squiz.net>
26
 * @copyright 2006 Squiz Pty Ltd (ABN 77 084 670 600)
27
 * @license   http://matrix.squiz.net/developer/tools/php_cs/licence BSD Licence
28
 * @version   Release: 1.2.0RC1
29
 * @link      http://pear.php.net/package/PHP_CodeSniffer
30
 */
31
class PHP_CodeSniffer_Standards_IncorrectPatternException extends Exception
32
{
33
 
34
}//end class
35
 
36
?>