Skip to content
Snippets Groups Projects
Commit 0b8e4ad0 authored by Victor Kotlyar's avatar Victor Kotlyar
Browse files

Renamed castor::exception::MissingOperand to

cta::exception::MissingOperand
parent dcca417b
No related branches found
No related tags found
No related merge requests found
......@@ -76,6 +76,7 @@ set (COMMON_LIB_SRC_FILES
exception/CommandLineNotParsed.cpp
exception/InvalidArgument.cpp
exception/InvalidConfigEntry.cpp
exception/MissingOperand.cpp
log/DummyLogger.cpp
log/LogContext.cpp
log/Logger.cpp
......
......@@ -21,12 +21,12 @@
* @author Castor Dev team, castor-dev@cern.ch
*****************************************************************************/
#include "castor/exception/MissingOperand.hpp"
#include "common/exception/MissingOperand.hpp"
// -----------------------------------------------------------------------------
// Constructor
// -----------------------------------------------------------------------------
castor::exception::MissingOperand::MissingOperand():
cta::exception::MissingOperand::MissingOperand():
cta::exception::Exception() {
}
......@@ -25,7 +25,7 @@
#include "common/exception/Exception.hpp"
namespace castor { namespace exception {
namespace cta { namespace exception {
/**
* Missing operand.
......@@ -41,5 +41,5 @@ namespace castor { namespace exception {
}; // class MissingOperand
} } // namespace castor exception
} } // namespace cta exception
......@@ -23,14 +23,14 @@
#include "castor/mediachanger/CmdLine.hpp"
#include "common/exception/InvalidArgument.hpp"
#include "castor/exception/MissingOperand.hpp"
#include "common/exception/MissingOperand.hpp"
#include <getopt.h>
//------------------------------------------------------------------------------
// handleMissingParameter
//------------------------------------------------------------------------------
void castor::mediachanger::CmdLine::handleMissingParameter(const int opt) {
castor::exception::MissingOperand ex;
cta::exception::MissingOperand ex;
ex.getMessage() << "The -" << (char)opt << " option requires a parameter";
throw ex;
}
......
......@@ -24,7 +24,7 @@
#pragma once
#include "common/exception/InvalidArgument.hpp"
#include "castor/exception/MissingOperand.hpp"
#include "common/exception/MissingOperand.hpp"
#include "castor/mediachanger/CmdLineTool.hpp"
#include "castor/mediachanger/DismountCmdLine.hpp"
......
......@@ -21,7 +21,7 @@
* @author Castor Dev team, castor-dev@cern.ch
*****************************************************************************/
#include "castor/exception/MissingOperand.hpp"
#include "common/exception/MissingOperand.hpp"
#include "castor/mediachanger/DismountCmdLine.hpp"
#include "castor/mediachanger/LibrarySlotParser.hpp"
#include "common/exception/Exception.hpp"
......@@ -74,7 +74,7 @@ castor::mediachanger::DismountCmdLine::DismountCmdLine(const int argc,
// Check that both VID and DRIVE_SLOT has been specified
if(nbArgs < 2) {
castor::exception::MissingOperand ex;
cta::exception::MissingOperand ex;
ex.getMessage() << "Both VID and DRIVE_SLOT must be specified";
throw ex;
}
......
......@@ -24,7 +24,7 @@
#pragma once
#include "common/exception/InvalidArgument.hpp"
#include "castor/exception/MissingOperand.hpp"
#include "common/exception/MissingOperand.hpp"
#include "castor/mediachanger/CmdLineTool.hpp"
#include "castor/mediachanger/MountCmdLine.hpp"
......
......@@ -21,7 +21,7 @@
* @author Castor Dev team, castor-dev@cern.ch
*****************************************************************************/
#include "castor/exception/MissingOperand.hpp"
#include "common/exception/MissingOperand.hpp"
#include "castor/mediachanger/MountCmdLine.hpp"
#include "common/exception/Exception.hpp"
......@@ -73,7 +73,7 @@ castor::mediachanger::MountCmdLine::MountCmdLine(const int argc,
// Check that both VID and DRIVE_SLOT has been specified
if(nbArgs < 2) {
castor::exception::MissingOperand ex;
cta::exception::MissingOperand ex;
ex.getMessage() << "Both VID and DRIVE_SLOT must be specified";
throw ex;
}
......
......@@ -33,7 +33,6 @@ set (UTILS_LIB_SRC_FILES
../exception/NoEntry.cpp
../exception/Errnum.cpp
../exception/NotAnOwner.cpp
../exception/MissingOperand.cpp
../exception/NoPortInRange.cpp
../exception/TimeOut.cpp
../exception/OutOfMemory.cpp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment