* @param expected This is what we expect
* @throws InternetSCSIException If this comparison failed, this exception will be thrown
*/
public static final void isExpected (final int field, final int expected) throws InternetSCSIException {
if (field != expected) { throw new InternetSCSIException("This field does not contain the expected value."); }
}