Hi all,
I'm trying to implement my own custom Error class within a class I wrote called ASImage.

ASImageException.as:
Code:
class ASImageException extends Error {
	public function ASImageException() {
    	_level2.createTextField(errMsg,101010,Stage.height/2,Stage.width/2,100,50);
  		_level2.errMsg.text = "Error in class :: ASImage \n Target must be of type MovieClip \n ";
	}
}
I'm not sure if I need a constructor for this custom error class, regardless my ASImage class cannot find the ASImageException class( debugger say class ASImageException class cannot be loaded.) I have tried importing the ASImageException from within the ASImage Class but it doesnt help. I have the classpath for the .fla that is implementing the ASImage class set to a directory that contains the ASImage.as and the ASImageException.as file. It finds the ASImage class no problem, but it cannot seem to find the ASImageException class eventhough its in the same directory, I find this strange. I must be missing somthing very simple.

Any Ideas? I hope that made at least partial sense.
~Dev