blob: d484967bdb270c35a7a8b845d327e24052de8581 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#include <sqlExceptions.h>
#include <compileTimeFormatter.h>
namespace Slicer {
void TooManyRowsReturned::ice_print(std::ostream & s) const
{
s << "Too many rows returned";
}
void NoRowsReturned::ice_print(std::ostream & s) const
{
s << "No rows returned";
}
void NoRowsFound::ice_print(std::ostream & s) const
{
s << "No rows found";
}
AdHocFormatter(UnsuitableIdFieldTypeMsg, "Unsuitable id field type [%?]");
void UnsuitableIdFieldType::ice_print(std::ostream & s) const
{
UnsuitableIdFieldTypeMsg::write(s, type);
}
}
|