public function __construct($detailedReason)
 {
     parent::__construct($detailedReason);
 }
 public function __construct(User $user, $preferenceKey)
 {
     $message = sprintf(PartKeepr::i18n("User preference %s not found for user %s (%s)"), $preferenceKey, $user->getUsername(), $user->getId());
     parent::__construct($message);
 }
 public function __construct($class, $id)
 {
     parent::__construct(sprintf(PartKeepr::i18n("The entity %s with the id %d could not be found"), $class, $id));
 }
 public function __construct()
 {
     parent::__construct("The entity is not persistant.");
 }
 public function __construct($detailedReason, $requestedClass, $availableClasses)
 {
     parent::__construct(PartKeepr::i18n("No adequate renderer found: {$detailedReason} \nRequested: {$requestedClass} \nAvailable: " . implode(", ", $availableClasses)));
 }
 public function __construct($class, $id)
 {
     parent::__construct(sprintf(PartKeepr::i18n("The object of type %s with the id %s could not be found in the database."), $class, $id));
 }
 public function __construct($id)
 {
     parent::__construct("The session with the id {$id} could not be found");
 }
 public function __construct($username)
 {
     parent::__construct(sprintf(PartKeepr::i18n("User %s already exists."), $username));
 }
 public function __construct($id)
 {
     parent::__construct(sprintf(PartKeepr::i18n("Category %d not found."), $id));
 }
 public function __construct($username)
 {
     parent::__construct(sprintf(PartKeepr::i18n("The user %s doesn't exist. Maybe the user was already deleted."), $username));
 }
 /**
  * Constructs the exception
  * @param BaseEntity $entity
  */
 public function __construct(Part $part)
 {
     parent::__construct(PartKeepr::i18n("Part %s has no category assigned", $part));
 }
 public function __construct()
 {
     parent::__construct(PartKeepr::i18n("Username or Password wrong."));
 }
 public function __construct()
 {
     parent::__construct(PartKeepr::i18n("Storage Location not found."));
 }
 /**
  * Constructs the exception
  * @param BaseEntity $entity
  */
 public function __construct()
 {
     parent::__construct(PartKeepr::i18n("No storage location assigned"));
 }