Select Git revision
SocketException.cpp
-
Xavier ELATTAOUI authored
minor change
Xavier ELATTAOUI authoredminor change
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
WaveformException.cpp 2.71 KiB
//******************************************************************************************
//
//
// september 13, 2004 : Source file for the waveforms exceptions in socket mode
//
// with a Lecroy scope (avaiable for all models)
//
//
// author : X.Elattaoui
//
// WaveformException.cpp: interface for the waveform exception class.
//
//******************************************************************************************
// ============================================================================
// DEPENDENCIES
// ============================================================================
#include "WaveformException.h"
namespace lecroy
{
// ============================================================================
// WaveformException::WaveformException
// ============================================================================
WaveformException::WaveformException (void)
: LecroyException()
{
}
// ============================================================================
// WaveformException::WaveformException
// ============================================================================
WaveformException::WaveformException (const char *_reason,
const char *_desc,
const char *_origin,
int _severity)
: LecroyException(_reason, _desc, _origin, _severity)
{
}
// ============================================================================
// WaveformException::WaveformException
// ============================================================================
WaveformException::WaveformException (const std::string& _reason,
const std::string& _desc,
const std::string& _origin,
int _severity)
: LecroyException(_reason, _desc, _origin, _severity)
{
}
// ============================================================================
// WaveformException::WaveformException
// ============================================================================
WaveformException::WaveformException (const WaveformException& _src)
: LecroyException(_src)
{
}
// ============================================================================
// WaveformException::~WaveformException
// ============================================================================
WaveformException::~WaveformException (void)
{
}