package exceptions;

public class TooColdException extends TemperatureException {
    
    public static void main(String[] args) {
        throw new TooColdException();
    }
}
