/* 	E_OSErr.java	Title:			Virtual Control Surface	Author:			root	Description:	Copyright © 2001 Jason LamportAll Rights ReservedAll application-defined exceptions*/package com.strangelight.mactoolbox;import com.strangelight.E_Exception;import com.strangelight.E_RuntimeException;/**	Indicates an Mac Toolbox-related exception.	Adds a numeric field for recording the error code.*/public class E_OSErr extends E_Exception { 	public E_OSErr(String s) { super(s); }	public E_OSErr() { super(); }	public E_OSErr(int err) { super(); osErr = err; }	public E_OSErr(String s, int err) { super(s); osErr = err; }		public int get_error_code() { return osErr; }		protected int osErr;}