repairexception.php 342 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Copyright (c) 2014 Vincent Petry <pvince81@owncloud.com>
  4. * This file is licensed under the Affero General Public License version 3 or
  5. * later.
  6. * See the COPYING-README file.
  7. */
  8. namespace OC;
  9. /**
  10. * Exception thrown whenever a database/migration repair
  11. * could not be done.
  12. */
  13. class RepairException extends \Exception {
  14. }