Skip to content
Snippets Groups Projects
Commit 4685815e authored by Scott Snyder's avatar Scott Snyder Committed by Tadej Novak
Browse files

CoraCool: Fix gcc13 warning.

CoraCool: Fix gcc13 warning.

Typo in raising exception.
parent 115629ba
2 merge requests!59383cppcheck in trigger code: Prefer prefix ++/-- operators for non-primitive types.,!59046CoraCool: Fix gcc13 warning.
......@@ -87,8 +87,8 @@ int CoraCoolSequence::fetch(const int inc) {
"Unexpected number of rows locked in keytable",
"CoraCoolSequence::CoraCoolSequence");
} else {
throw ("Problem generating next key value for "+m_seqname,
"CoraCoolSequence::fetch");
throw CoraCoolException ("Problem generating next key value for "+m_seqname,
"CoraCoolSequence::fetch");
}
return key;
}
......
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