Skip to content
Snippets Groups Projects
Commit e2b589d8 authored by Tomáš Pecka's avatar Tomáš Pecka
Browse files

algo: fix exception messages

parent 23361992
No related branches found
No related tags found
Loading
......@@ -113,23 +113,23 @@ void PDAToRHPDA::Visit(void*, const ExtendedNFA&) const {
}
 
void PDAToRHPDA::Visit(void*, const CompactNFA&) const {
throw exception::AlibException("Unsupported automaton type UnknownAutomaton");
throw exception::AlibException("Unsupported automaton type CompactNFA");
}
 
void PDAToRHPDA::Visit(void*, const DPDA&) const {
throw exception::AlibException("Unsupported automaton type UnknownAutomaton");
throw exception::AlibException("Unsupported automaton type DPDA");
}
 
void PDAToRHPDA::Visit(void*, const SinglePopDPDA&) const {
throw exception::AlibException("Unsupported automaton type UnknownAutomaton");
throw exception::AlibException("Unsupported automaton type SinglePopDPDA");
}
 
void PDAToRHPDA::Visit(void*, const InputDrivenNPDA&) const {
throw exception::AlibException("Unsupported automaton type UnknownAutomaton");
throw exception::AlibException("Unsupported automaton type InputDrivenNPDA");
}
 
void PDAToRHPDA::Visit(void*, const VisiblyPushdownNPDA&) const {
throw exception::AlibException("Unsupported automaton type UnknownAutomaton");
throw exception::AlibException("Unsupported automaton type VisiblyPushdownNPDA");
}
 
void PDAToRHPDA::Visit(void* data, const RealTimeHeightDeterministicNPDA& automaton) const {
......@@ -143,11 +143,11 @@ void PDAToRHPDA::Visit(void* data, const NPDA& automaton) const {
}
 
void PDAToRHPDA::Visit(void*, const SinglePopNPDA&) const {
throw exception::AlibException("Unsupported automaton type UnknownAutomaton");
throw exception::AlibException("Unsupported automaton type SinglePopNPDA");
}
 
void PDAToRHPDA::Visit(void*, const OneTapeDTM&) const {
throw exception::AlibException("Unsupported automaton type UnknownAutomaton");
throw exception::AlibException("Unsupported automaton type OneTapeDTM");
}
 
const PDAToRHPDA PDAToRHPDA::PDA_TO_RHPDA;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment