static class ArabicShapingExceptionHandler extends ExceptionHandler
{
public Object[] getTestObjects()
{
Locale locales[] = SerializableTest.getLocales();
ArabicShapingException exceptions[] = new ArabicShapingException[locales.length];
for (int i = 0; i < locales.length; i += 1) {
exceptions[i] = new ArabicShapingException(locales[i].toString());
}
return exceptions;
}