package lectures.exceptions.extra;
import util.annotations.WebDocuments;

@WebDocuments({"Lectures/ExceptionsExtra.pptx", "Lectures/ExceptionsExtra.pdf", "Videos/ExceptionsExtra.avi"})
public interface WeightSetterWithFinallyAndAssertions {
    public void setWeight(double newValue);
    public boolean preSetWeight();
    public boolean preSetWeight(double newValue);
}