From f67e5fdac584e606d0d93bb064bbb672d9370cbd Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Mon, 24 Jun 2013 13:26:32 +0200 Subject: [PATCH] Fix termination warning --- frontend/classes/vps.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/classes/vps.php b/frontend/classes/vps.php index 310ccca..e9df5a5 100644 --- a/frontend/classes/vps.php +++ b/frontend/classes/vps.php @@ -270,7 +270,7 @@ class Vps extends CPHPDatabaseRecordClass } elseif($this->sStatus == CVM_STATUS_TERMINATED) { - throw new VpsSuspendedException("No operations can be performed on this VPS beacuse it is terminated.", 1, $this->sInternalId); + throw new VpsTerminatedException("No operations can be performed on this VPS beacuse it is terminated.", 1, $this->sInternalId); } else {