[345] | 1 | <?php |
---|
| 2 | /* |
---|
| 3 | * $Id: Exception.php 4628 2008-07-04 16:32:19Z romanb $ |
---|
| 4 | * |
---|
| 5 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
---|
| 6 | * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
---|
| 7 | * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
---|
| 8 | * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
---|
| 9 | * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
---|
| 10 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
---|
| 11 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
---|
| 12 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
---|
| 13 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
---|
| 14 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
---|
| 15 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
---|
| 16 | * |
---|
| 17 | * This software consists of voluntary contributions made by many individuals |
---|
| 18 | * and is licensed under the LGPL. For more information, see |
---|
| 19 | * <http://www.doctrine-project.org>. |
---|
| 20 | */ |
---|
| 21 | |
---|
| 22 | namespace Doctrine\DBAL; |
---|
| 23 | |
---|
| 24 | /** |
---|
| 25 | * Doctrine\DBAL\ConnectionException |
---|
| 26 | * |
---|
| 27 | * @license http://www.opensource.org/licenses/lgpl-license.php LGPL |
---|
| 28 | * @link www.doctrine-project.org |
---|
| 29 | * @since 2.0 |
---|
| 30 | * @version $Revision: 4628 $ |
---|
| 31 | * @author Jonathan H. Wage <jonwage@gmail.com |
---|
| 32 | */ |
---|
| 33 | class ConnectionException extends DBALException |
---|
| 34 | { |
---|
| 35 | public static function commitFailedRollbackOnly() |
---|
| 36 | { |
---|
| 37 | return new self("Transaction commit failed because the transaction has been marked for rollback only."); |
---|
| 38 | } |
---|
| 39 | |
---|
| 40 | public static function noActiveTransaction() |
---|
| 41 | { |
---|
| 42 | return new self("There is no active transaction."); |
---|
| 43 | } |
---|
| 44 | |
---|
| 45 | public static function savepointsNotSupported() |
---|
| 46 | { |
---|
| 47 | return new self("Savepoints are not supported by this driver."); |
---|
| 48 | } |
---|
| 49 | |
---|
| 50 | public static function mayNotAlterNestedTransactionWithSavepointsInTransaction() |
---|
| 51 | { |
---|
| 52 | return new self("May not alter the nested transaction with savepoints behavior while a transaction is open."); |
---|
| 53 | } |
---|
| 54 | } |
---|