Property definitions

nitc $ ErrorPersonNotFound :: defaultinit
# No person found with this name
class ErrorPersonNotFound
	super CmdError

	# Name of the person that was not found
	var name: String

	redef fun to_s do return "No person found for `{name}`"
end
src/doc/commands/commands_catalog.nit:278,1--286,3