JournalException
175176177178179180181182183184
case EVENT_IDENTIFIER: readEventRecord(); break; default: String msg = "Unknown identifier: " + identifier; throw new JournalException(msg); } identifier = record.readChar(); } }
257258259260261262263264
state.setStatus(ItemState.STATUS_EXISTING_MODIFIED); changes.modified(state); break; default: String msg = "Unknown item operation: " + operation; throw new JournalException(msg); } }
152153154155156157158159
collection.add(record.readQName()); } break; default: String msg = "Unknown opcode: " + opcode; throw new JournalException(msg); } }