* @see org.apache.uima.jcas.JCas#getRequiredType(java.lang.String)
*/
public Type getRequiredType(String s) throws CASException {
Type t = getTypeSystem().getType(s);
if (null == t) {
CASException casEx = new CASException(CASException.JCAS_TYPENOTFOUND_ERROR,
new String[] { s });
throw casEx;
}
return t;
}