]> git.sur5r.net Git - bacula/bacula/blobdiff - gui/baculum/protected/Class/Errors.php
baculum: Assign Baculum copyright to Kern Sibbald
[bacula/bacula] / gui / baculum / protected / Class / Errors.php
index e33c34173e42ea7dc59b2b8c1b228070b121a92b..6dfdb4a7354431fe170155052f1b45b420a0b426 100644 (file)
@@ -1,20 +1,23 @@
 <?php
-/**
- * Bacula® - The Network Backup Solution
- * Baculum - Bacula web interface
+/*
+ * Bacula(R) - The Network Backup Solution
+ * Baculum   - Bacula web interface
  *
- * Copyright (C) 2013-2014 Marcin Haba
+ * Copyright (C) 2013-2016 Kern Sibbald
  *
  * The main author of Baculum is Marcin Haba.
- * The main author of Bacula is Kern Sibbald, with contributions from many
- * others, a complete list can be found in the file AUTHORS.
+ * The original author of Bacula is Kern Sibbald, with contributions
+ * from many others, a complete list can be found in the file AUTHORS.
  *
  * You may use this file and others of this release according to the
  * license defined in the LICENSE file, which includes the Affero General
  * Public License, v3.0 ("AGPLv3") and some additional permissions and
  * terms pursuant to its AGPLv3 Section 7.
  *
- * Bacula® is a registered trademark of Kern Sibbald.
+ * This notice must be preserved when any source code is
+ * conveyed and/or propagated.
+ *
+ * Bacula(R) is a registered trademark of Kern Sibbald.
  */
  
 class GenericError {
@@ -74,7 +77,7 @@ class PoolError extends GenericError {
        const ERROR_NO_VOLUMES_IN_POOL_TO_UPDATE = 41;
 
        const MSG_ERROR_POOL_DOES_NOT_EXISTS = 'Pool with inputed poolid does not exist.';
-       const MSG_NO_VOLUMES_IN_POOL_TO_UPDATE= 'Pool with inputed poolid does not contain any volume to update.';
+       const MSG_ERROR_NO_VOLUMES_IN_POOL_TO_UPDATE= 'Pool with inputed poolid does not contain any volume to update.';
 }
 
 class JobError extends GenericError {
@@ -107,9 +110,11 @@ class FileSetError extends GenericError {
 
 class BVFSError extends GenericError {
        const ERROR_JOB_DOES_NOT_EXISTS = 70;
-       const ERROR_INVALID_PATH = 71;
+       const ERROR_INVALID_RPATH = 71;
+       const ERROR_INVALID_RESTORE_PATH = 72;
 
        const MSG_ERROR_JOB_DOES_NOT_EXISTS = 'Job with inputed jobid does not exist.';
-       const MSG_ERROR_INVALID_PATH = 'Inputed path for restore is invalid. Proper format is b2[0-9]+.';
+       const MSG_ERROR_INVALID_RPATH = 'Inputed path for restore is invalid. Proper format is b2[0-9]+.';
+       const MSG_ERROR_INVALID_RESTORE_PATH = 'Inputted BVFS path param is invalid.';
 }
-?>
\ No newline at end of file
+?>