Home
last modified time | relevance | path

Searched refs:CommandProcessorException (Results 1 – 3 of 3) sorted by relevance

/dports/games/trenchbroom/TrenchBroom-ed46601/common/src/View/
H A DCommandProcessor.cpp52 … throw CommandProcessorException("Partial failure while executing command group"); in doPerformDo()
64 throw CommandProcessorException("Partial failure while undoing command group"); in doPerformUndo()
135 throw CommandProcessorException("Command stack is empty"); in lastCommandName()
141 throw CommandProcessorException("Undo stack is empty"); in nextCommandName()
153 throw CommandProcessorException("Group stack is empty"); in endGroup()
186 … throw CommandProcessorException("Cannot undo individual commands of a command group"); in undoLastCommand()
199 throw CommandProcessorException("Cannot redo while in a command group"); in redoNextCommand()
312 throw CommandProcessorException("Group command stack is empty"); in popGroupedCommand()
377 throw CommandProcessorException("Command stack is empty"); in popLastCommand()
386 throw CommandProcessorException("Command stack is empty"); in popNextCommand()
H A DUndoableCommand.cpp66 throw CommandProcessorException("Command is not repeatable"); in doRepeat()
70 throw CommandProcessorException("Command does not modify the document"); in documentModificationCount()
/dports/games/trenchbroom/TrenchBroom-ed46601/common/src/
H A DExceptions.h119 class CommandProcessorException : public ExceptionStream<CommandProcessorException> {
121 CommandProcessorException() throw() {} in CommandProcessorException() function
122 CommandProcessorException(const String& str) throw() : ExceptionStream(str) {} in throw()
123 ~CommandProcessorException() throw() {} in throw()