startTest();
Exception ex = new RepositoryException();
Exception ex2 = new RepositoryException( "Ignored" ); //$NON-NLS-1$
Exception ex3 = new RepositoryException( ex2 );
Exception ex4 = new RepositoryException( "Ignored", ex3 ); //$NON-NLS-1$
Exception ex5 = new AuditException();
Exception ex6 = new AuditException( "Ignored" ); //$NON-NLS-1$
Exception ex7 = new AuditException( "Ignored", ex ); //$NON-NLS-1$
Exception ex8 = new AuditException( ex4 );
ex = new ContentException( "Ignored" ); //$NON-NLS-1$
ex = new ContentException( "Ignored", ex5 ); //$NON-NLS-1$
ex = new ContentException( ex6 );
ex = new InvalidParameterException();
ex = new SQLResultSetException();