Java tutorial
//package com.java2s; public class Main { public static <T> T checkNotNull(T value, String message) { if (value == null) { throw new NullPointerException(message); } return value; } public static <T> T checkNotNull(T value) { if (value == null) { throw new NullPointerException(); } return value; } }