blob: cdc172740e66be70053eb23581ea57e39144036f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<?php
/**
* File containing the ezcGraphMatrixInvalidDimensionsException class
*
* @package Graph
* @version //autogentag//
* @copyright Copyright (C) 2005-2008 eZ systems as. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
/**
* Exception thrown when an operation is not possible because of incompatible
* matrix dimensions.
*
* @package Graph
* @version //autogentag//
*/
class ezcGraphMatrixInvalidDimensionsException extends ezcGraphException
{
/**
* Constructor
*
* @param int $rows
* @param int $columns
* @param int $dRows
* @param int $dColumns
* @return void
* @ignore
*/
public function __construct( $rows, $columns, $dRows, $dColumns )
{
parent::__construct( "Matrix '{$dRows}, {$dColumns}' is incompatible with matrix '{$rows}, {$columns}' for requested operation." );
}
}
?>
|