public Format getFormat(int formatId) {
try {
Format format = formatList.get(formatId);
if (format == null) {
throw new DeletedClassException
("Format does not exist: " + formatId);
}
return format;
} catch (NoSuchElementException e) {
throw new DeletedClassException
("Format does not exist: " + formatId);
}
}