~ubuntu-branches/ubuntu/trusty/log4shib/trusty

« back to all changes in this revision

Viewing changes to src/Configurator.cpp

  • Committer: Package Import Robot
  • Author(s): Russ Allbery
  • Date: 2012-06-05 21:20:25 UTC
  • Revision ID: package-import@ubuntu.com-20120605212025-uyigtav7dqwvnf41
Tags: upstream-1.0.4
ImportĀ upstreamĀ versionĀ 1.0.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Configurator.cpp
 
3
 *
 
4
 * Copyright 2001, Glen Scott. All rights reserved.
 
5
 *
 
6
 * See the COPYING file for the terms of usage and distribution.
 
7
 */
 
8
#include "PortabilityImpl.hh"
 
9
#include <log4shib/Configurator.hh>
 
10
 
 
11
namespace log4shib {
 
12
 
 
13
    ConfigureFailure::ConfigureFailure(const std::string& reason) :
 
14
        std::runtime_error(reason) {
 
15
    }
 
16
}
 
17
 
 
18
 
 
19
 
 
20