Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dCache
cta
Commits
c59c81d2
Commit
c59c81d2
authored
Jul 31, 2013
by
Steven Murray
Browse files
Added castor::exception::MountFailed
parent
a75e8bbc
Changes
5
Hide whitespace changes
Inline
Side-by-side
castor/exception/MountFailed.cpp
0 → 100644
View file @
c59c81d2
/******************************************************************************
* MountFailed.cpp
*
* This file is part of the Castor project.
* See http://castor.web.cern.ch/castor
*
* Copyright (C) 2003 CERN
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*
*
* @author Castor Dev team, castor-dev@cern.ch
*****************************************************************************/
#include
"castor/exception/MountFailed.hpp"
#include
"h/serrno.h"
// -----------------------------------------------------------------------------
// Constructor
// -----------------------------------------------------------------------------
castor
::
exception
::
MountFailed
::
MountFailed
()
:
castor
::
exception
::
Exception
(
ETMOUNTFAILED
)
{
}
castor/exception/MountFailed.hpp
0 → 100644
View file @
c59c81d2
/******************************************************************************
* MountFailed.hpp
*
* This file is part of the Castor project.
* See http://castor.web.cern.ch/castor
*
* Copyright (C) 2003 CERN
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*
*
* @author Castor Dev team, castor-dev@cern.ch
*****************************************************************************/
#ifndef CASTOR_EXCEPTION_MOUNT_FAILED_HPP
#define CASTOR_EXCEPTION_MOUNT_FAILED_HPP 1
#include
"castor/exception/Exception.hpp"
namespace
castor
{
namespace
exception
{
/**
* Failed to mount tape.
*/
class
MountFailed
:
public
castor
::
exception
::
Exception
{
public:
/**
* Constructor
*/
MountFailed
();
};
// class MountFailed
}
}
// namespace castor exception
#endif // CASTOR_EXCEPTION_MOUNT_FAILED_HPP
common/Imakefile
View file @
c59c81d2
...
...
@@ -31,6 +31,7 @@ COMMONLIB_OBJS = $(SYSDEP_OBJS) \
../castor/exception/OutOfMemory.o \
../castor/exception/Communication.o \
../castor/exception/MissingOperand.o \
../castor/exception/MountFailed.o \
../castor/exception/NoEntry.o \
../castor/exception/NoPortInRange.o \
../castor/exception/NoSegmentFound.o \
...
...
common/serror.c
View file @
c59c81d2
...
...
@@ -336,6 +336,7 @@ char *sys_terrlist[ETMAXERR-ETBASEOFF+2] =
"Tape-session error"
,
"Invalid tape-file sequence-number"
,
"Invalid tape-file file-size"
,
"Failed to mount tape"
,
"BAD ERROR NUMBER"
};
...
...
h/serrno.h
View file @
c59c81d2
...
...
@@ -341,7 +341,8 @@
#define ETSESSIONERROR ETBASEOFF+38
/* Tape-session error */
#define ETINVALIDTFSEQ ETBASEOFF+39
/* Invalid tape-file sequence-number */
#define ETINVALIDTFSIZE ETBASEOFF+40
/* Invalid tape-file file-size */
#define ETMAXERR ETBASEOFF+40
#define ETMOUNTFAILED ETBASEOFF+41
/* Failed to mount tape */
#define ETMAXERR ETBASEOFF+41
/*
*------------------------------------------------------------------------
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment