1package ds.util;
2
3import java.util.NoSuchElementException;
4
5public class Undef {
6 public static RuntimeException undef(String msg) {
7 return
8 new NoSuchElementException(msg);
9 }
10
11
12
13 public static <A> A undefined(String msg) {
14 throw
15 undef(msg);
16 }
17}