view orange/serialization/archives/ArchiveException.d @ 9:99c52d46822a

Serialization works now with D2, deserialization still doesn't work
author Jacob Carlborg <doob@me.com>
date Sat, 24 Jul 2010 18:58:18 +0200
parents f7b078e85f7f
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);
	}
}