/* 	E_Exception.java	Title:			Virtual Control Surface	Author:			root	Description:	Copyright © 2001 Jason LamportAll Rights ReservedAll application-defined exceptions.*/package com.strangelight.v4control;import com.strangelight.E_Exception;import com.strangelight.E_RuntimeException;/**	Indicates an attempt to initialize an already-initialized object.*/class E_Double_Init extends E_Exception { 	public E_Double_Init(String s) { super(s); }	public E_Double_Init() { super(); }}