public Planet(String name, Size size) throws ErrEmptyString {
planetList.add(this);
if (name.isEmpty()) {
throw new ErrEmptyString(
"You didn't enter a name for a planet in the configuration file.");
}
this.name = name;
this.character = new ArrayList<Object>();