view orange/serialization/archives/ArchiveException.d @ 18:3d42ea434d46

Added an error callback. Fixes #3 and #4.
author Jacob Carlborg <doob@me.com>
date Thu, 12 Aug 2010 23:24:51 +0200
parents 99c52d46822a
children 78e5fef4bbf2
line wrap: on
line source

/**
 * Copyright: Copyright (c) 2010 Jacob Carlborg.
 * Authors: Jacob Carlborg
 * Version: Initial created: Jan 30, 2010
 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
 */
module orange.serialization.archives.ArchiveException;

import orange.serialization.SerializationException;
import orange.util.string;

class ArchiveException : SerializationException
{	
	this (string message)
	{
		super(message);
	}
	
	this (string message, string file, long line)
	{
		super(message, file, line);
	}
	
	this (ExceptionBase exception)
	{
		super(exception);
	}
}