CMS 3D CMS Logo

Functions
Throw.cc File Reference
#include "Utilities/StorageFactory/src/Throw.h"
#include "FWCore/Utilities/interface/Exception.h"
#include <ostream>
#include <cstring>

Go to the source code of this file.

Functions

void throwStorageError (const char *category, const char *context, const char *call, int error)
 
void throwStorageError (edm::errors::ErrorCodes category, const char *context, const char *call, int error)
 

Function Documentation

void throwStorageError ( const char *  category,
const char *  context,
const char *  call,
int  error 
)
void throwStorageError ( edm::errors::ErrorCodes  category,
const char *  context,
const char *  call,
int  error 
)

Definition at line 19 of file Throw.cc.

References cms::Exception::addContext().

22 {
24  ex << call << " failed with system error '"
25  << strerror (error) << "' (error code " << error << ")";
26  ex.addContext(context);
27  throw ex;
28 }