}
mBytecode.put(value, new OpCode(value, name, parameters));
}
} catch (IOException ex) {
logger.error("IO error when reading byte code configuration file", ex);
throw new UnableToLoadByteConfigurationError(ex);
} catch (IllegalAttributeException ex) {
logger.error("illegal attribute when reading byte code configuration file", ex);
throw new UnableToLoadByteConfigurationError(ex);
} catch (IllegalDestinationValue ex) {
logger.error("illegal destination when reading byte code configuration file", ex);
throw new UnableToLoadByteConfigurationError(ex);
} catch (IllegalValueException ex) {
logger.error("illegal value when reading byte code configuration file", ex);
throw new UnableToLoadByteConfigurationError(ex);
} catch (JDOMException ex) {
logger.error("cannot parse DOM when reading byte code configuration file", ex);
throw new UnableToLoadByteConfigurationError(ex);
} catch (NumberFormatException ex) {
logger.error("number format problem when reading byte code configuration file", ex);
throw new UnableToLoadByteConfigurationError(ex);
} catch (TypeNotFoundException ex) {
logger.error("cannot found type when reading byte code configuration file", ex);
throw new UnableToLoadByteConfigurationError(ex);
}
}