task1/solution06/src/org/apidesign/apifest08/currency/Assert.java
author japod@localhost
Tue, 30 Sep 2008 12:24:45 +0200
changeset 21 61e4c4c120fd
parent 6 97662396c0fd
permissions -rw-r--r--
updating solution 06 to 1.5
japod@6
     1
package org.apidesign.apifest08.currency;
japod@6
     2
japod@21
     3
public final class Assert {
japod@6
     4
	static void notNull(Object value, String argumentName) {
japod@6
     5
		if(value == null) {
japod@6
     6
			throw new IllegalArgumentException("The argument '" + argumentName + "' connot not be null");
japod@6
     7
		}
japod@6
     8
	}
japod@6
     9
}
japod@21
    10
japod@21
    11