CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
Throw.h File Reference
#include "FWCore/Utilities/interface/EDMException.h"

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 }