assertIsNotNull method

void assertIsNotNull()

Implementation

void assertIsNotNull()
{
  if ( isNull() ) {
    throw new IllegalStateException("Operation is unsupported because MarshalledObject's value is null.");
  }
}