in nailgun-server/src/main/java/com/facebook/nailgun/Alias.java [46:54]
public Alias(String name, String description, Class clazz) {
if (name == null) throw (new IllegalArgumentException("Alias must have a name."));
this.name = name.trim();
if (this.name.length() == 0) throw (new IllegalArgumentException("Alias must have a name."));
if (clazz == null) throw (new IllegalArgumentException("Alias must have an associated class."));
this.description = description;
this.clazz = clazz;
}