This file is indexed.

/usr/include/openzwave/OZWException.h is in libopenzwave1.5-dev 1.5+ds-4.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
//-----------------------------------------------------------------------------
//
//	FatalErrorException.h
//
//	Exception Handling Code
//
//	Copyright (c) 2014 Justin Hammond <justin@dynam.ac>
//
//	SOFTWARE NOTICE AND LICENSE
//
//	This file is part of OpenZWave.
//
//	OpenZWave is free software: you can redistribute it and/or modify
//	it under the terms of the GNU Lesser General Public License as published
//	by the Free Software Foundation, either version 3 of the License,
//	or (at your option) any later version.
//
//	OpenZWave 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 Lesser General Public License for more details.
//
//	You should have received a copy of the GNU Lesser General Public License
//	along with OpenZWave.  If not, see <http://www.gnu.org/licenses/>.
//
//-----------------------------------------------------------------------------

#ifndef _FatalErrorException_H
#define _FatalErrorException_H

#include <stdexcept>
#include <iostream>
#include <string>
#include <sstream>



namespace OpenZWave
{
	/** \brief Exception Handling Interface.
	 *
	 * This class is for exporting errors etc when using the OpenZWave API. It can report incorrect API usage
	 * (such as passing incorrect ValueID's to the Manager::SetValue methods) or
	 */

OPENZWAVE_EXPORT_WARNINGS_OFF
	class OPENZWAVE_EXPORT OZWException : public std::runtime_error
	{
		public:
			enum ExceptionType {
				OZWEXCEPTION_OPTIONS,
				OZWEXCEPTION_CONFIG,
				OZWEXCEPTION_INVALID_HOMEID = 100,
				OZWEXCEPTION_INVALID_VALUEID,
				OZWEXCEPTION_CANNOT_CONVERT_VALUEID,
				OZWEXCEPTION_SECURITY_FAILED
			};

			//-----------------------------------------------------------------------------
			// Construction
			//-----------------------------------------------------------------------------
			OZWException(std::string file, int line, ExceptionType exitCode, std::string msg) :
				std::runtime_error(OZWException::GetExceptionText(file, line, exitCode, msg)),
				m_exitCode(exitCode),
				m_file(file),
				m_line(line),
				m_msg(msg)
			{
			}

			~OZWException() throw()
			{
			}

			//-----------------------------------------------------------------------------
			// Accessor methods
			//-----------------------------------------------------------------------------
			ExceptionType GetType() { return m_exitCode; }
			std::string GetFile() { return m_file; }
			uint32 GetLine() { return m_line; }
			std::string GetMsg() { return m_msg; }


		private:
			static std::string GetExceptionText(std::string file, int line, ExceptionType exitCode, std::string msg)
			{
				std::stringstream ss;
				ss << file.substr(file.find_last_of("/\\") + 1) << ":" << line;
				switch (exitCode) {
					case OZWEXCEPTION_OPTIONS:
						ss << " - OptionsError (" << exitCode << ") Msg: " << msg;
						break;
					case OZWEXCEPTION_CONFIG:
						ss << " - ConfigError (" << exitCode << ") Msg: " << msg;
						break;
					case OZWEXCEPTION_INVALID_HOMEID:
						ss << " - InvalidHomeIDError (" << exitCode << ") Msg: " << msg;
						break;
					case OZWEXCEPTION_INVALID_VALUEID:
						ss << " - InvalidValueIDError (" << exitCode << ") Msg: " << msg;
						break;
					case OZWEXCEPTION_CANNOT_CONVERT_VALUEID:
						ss << " - CannotConvertValueIDError (" << exitCode << ") Msg: " << msg;
						break;
					case OZWEXCEPTION_SECURITY_FAILED:
						ss << " - Security Initilization Failed (" << exitCode << ") Msg: " << msg;
						break;
				}
				return ss.str();
			}

			//-----------------------------------------------------------------------------
			// Member variables
			//-----------------------------------------------------------------------------
			ExceptionType   m_exitCode;
			std::string 	m_file;
			uint32			m_line;
			std::string 	m_msg;
	};
OPENZWAVE_EXPORT_WARNINGS_ON
}

#endif // _FatalErrorException_H