|
@@ -39,9 +39,9 @@ public:
|
|
|
/// implementation library
|
|
|
class DataSourceLibrarySymbolError : public DataSourceError {
|
|
|
public:
|
|
|
-DataSourceLibrarySymbolError(const char* file, size_t line,
|
|
|
- const char* what) :
|
|
|
- DataSourceError(file, line, what) {}
|
|
|
+ DataSourceLibrarySymbolError(const char* file, size_t line,
|
|
|
+ const char* what) :
|
|
|
+ DataSourceError(file, line, what) {}
|
|
|
};
|
|
|
|
|
|
/// \brief Raised if the given config contains bad data
|
|
@@ -50,12 +50,12 @@ DataSourceLibrarySymbolError(const char* file, size_t line,
|
|
|
/// instance, the sqlite3 datasource needs a database file).
|
|
|
class DataSourceConfigError : public DataSourceError {
|
|
|
public:
|
|
|
-DataSourceConfigError(const char* file, size_t line, const char* what) :
|
|
|
- DataSourceError(file, line, what) {}
|
|
|
-// This exception is created in the dynamic modules. Apparently
|
|
|
-// sunstudio can't handle it if we then automatically derive the
|
|
|
-// destructor, so we provide it explicitely
|
|
|
-~DataSourceConfigError() throw() {}
|
|
|
+ DataSourceConfigError(const char* file, size_t line, const char* what) :
|
|
|
+ DataSourceError(file, line, what) {}
|
|
|
+ // This exception is created in the dynamic modules. Apparently
|
|
|
+ // sunstudio can't handle it if we then automatically derive the
|
|
|
+ // destructor, so we provide it explicitely
|
|
|
+ ~DataSourceConfigError() throw() {}
|
|
|
};
|
|
|
|
|
|
typedef DataSourceClient* ds_creator(isc::data::ConstElementPtr config);
|