/*
Copyright (C) 2005 David Green <green@couchpotato.net>
All Rights Reserved.

This file is part of Aelfengard.

Aelfengard is proprietary software. You may not redistribute it without
prior written permission from the copyright holder.
*/

package server;

public class FatalError extends Error {
    
    private static final long serialVersionUID = 1L;

    public FatalError() {
        super();
    }
    
    public FatalError(String msg) {
        super(msg);
    }
    
    public FatalError(String msg, Throwable cause) {
        super(msg, cause);
    }
    
    public FatalError(Throwable cause) {
        super(cause);
    }
    
}