Constructs a new instance of ClassDefinition
with the
supplied {@link Class} object and byte array representing the new class
file bytes.
if (theClass == null) {
throw new NullPointerException(Messages.getString("instrument.1")); //$NON-NLS-1$
}
if (theClassFile == null) {
throw new NullPointerException(Messages.getString("instrument.2")); //$NON-NLS-1$
}
this.definitionClass = theClass;
this.definitionClassFile = theClassFile;