throws ConnectorNotFoundException, PersistentStoreException {
if ("UnknownConnector".equalsIgnoreCase(connectorName)) {
throw new ConnectorNotFoundException(connectorName);
}
if ("IntransigentConnector".equalsIgnoreCase(connectorName)) {
throw new PersistentStoreException(connectorName);
}
schedules.put(connectorName.toLowerCase(), schedule);
}