home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgLangD.iso
/
VCAFE.3.0A
/
Main.bin
/
AssertionError.java
< prev
next >
Wrap
Text File
|
1998-09-08
|
283b
|
17 lines
package com.symantec.itools.lang;
/**
* @author Symantec Internet Tools Division
* @version 1.0
* @since VCafe 3.0
*/
public class AssertionError
extends Error
{
public AssertionError(String msg)
{
super("Assertion failed: " + msg);
}
}