{
if (log.isDebugEnabled())
{
log.debug("Unknown Alternative type....Alternative not supported");
}
throw new UnsupportedAlternative();
}
}
catch (UnsupportedAssertion e)
{
//If there is al least one unsupported assertion the alternative isn't supported
throw new UnsupportedAlternative();
}
catch (UnsupportedPolicy ep)
{
//If there is al least one unsupported assertion the alternative isn't supported
throw new UnsupportedAlternative();
}
}
}