aboutsummaryrefslogtreecommitdiff
blob: db817217a58f6421c3f903c58dae6ffe22b01b42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! /usr/bin/python2
#
# Copyright(c) 2004, Karl Trygve Kalleberg <karltk@gentoo.org>
# Copyright(c) 2004, Gentoo Foundation
#
# Licensed under the GNU General Public License, v2
#
# $Header$

class FatalError:
	def __init__(self, s):
		self._message = s
	def get_message(self):
		return self._message