2: /**
3: * A class representing mistakenly missing milk.
4: *
5: * @author Mark Young (A00000000)
6: */
7: public class NotEnufMilkException extends RuntimeException {
9: public NotEnufMilkException() {
10: }
12: public NotEnufMilkException(String message) {
13: super(message);
14: }
16: }