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
     1 package org.apidesign.apifest08.currency;
     2 
     3 public final class Assert {
     4 	static void notNull(Object value, String argumentName) {
     5 		if(value == null) {
     6 			throw new IllegalArgumentException("The argument '" + argumentName + "' connot not be null");
     7 		}
     8 	}
     9 }
    10 
    11