Skip to content
Snippets Groups Projects
Select Git revision
  • a0fa6b8a34d87396c1acb40e55c1c9f22388c9f2
  • master default protected
  • develop protected
  • feat_remove_attr
  • python2.7
  • python3.8
6 results

exception.cpp

Blame
  • exception.cpp 1.40 KiB
    /*
        Copyright (C) 2010 Tomasz Śniatowski, Adam Radziszewski
        Part of the libcorpus2 project
    
        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 3 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 LICENSE and COPYING files for more details.
    */
    
    #include <libcorpus2/exception.h>
    #include <sstream>
    #include <libcorpus2/util/settings.h>
    namespace Corpus2 {
    
    	Corpus2Error::Corpus2Error(const std::string &what)
    		: PwrNlp::PwrNlpError(what)
    	{
    	}
    
    	Corpus2Error::~Corpus2Error() throw()
    	{
    	}
    
    	std::string Corpus2Error::scope() const
    	{
    		return "Corpus2";
    	}
    
    	FileNotFound::FileNotFound(const std::string& filename,
    			const std::string& paths, const std::string& where)
    		: Corpus2Error("File not found: " + filename), filename(filename),
    		paths(paths), where(where)
    	{
    	}
    
    	FileNotFound::~FileNotFound() throw()
    	{
    	}
    
    	std::string FileNotFound::info() const
    	{
    		std::ostringstream ss;
    		if (where.empty()) {
    			ss << "File ";
    		} else {
    			ss << where << " file ";
    		}
    		ss << "'" << filename << "' not found in search path " << paths;
    		return ss.str();
    	}
    
    
    } /* end ns Corpus2 */