package edu.vt.marian.Document;

import java.lang.Exception;

/**
 * Exception class for bad SOIF constructs
 */
public class SOIFException extends Exception
{
    /**
     * Build a new SOIFException
     * @param msg  info string for this exception
     */
	public SOIFException(String msg) {
		super(msg);
	}

}

