Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/Base/Enum.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ protected function setInternalId($id)
$this->name = static::$names[$id];
} else
throw new MissingElementException(
'knows nothing about such id == '.$id
get_class($this) . ' knows nothing about such id == '.$id
);

return $this;
Expand Down
2 changes: 1 addition & 1 deletion core/Base/Enumeration.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public function setId($id)
$this->name = $names[$id];
} else
throw new MissingElementException(
'knows nothing about such id == '.$id
get_class($this) . ' knows nothing about such id == '.$id
);

return $this;
Expand Down
2 changes: 1 addition & 1 deletion main/Base/AbstractProtoClass.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public function getPropertyByName($name)
return $property;

throw new MissingElementException(
"unknown property requested by name '{$name}'"
get_class($this) . ": unknown property requested by name '{$name}'"
);
}

Expand Down