"""Custom exceptions for the application.""" class ReleaseDateDiffMissing(Exception): """Release date difference is missing.""" pass class PriorityCalculationFailed(Exception): """Generic priority calculation failed.""" pass