This is the root of all Jaxen exceptions. It may wrap other exceptions. See {@link #getRootCause}. @author bob mcwhirter
257258259260261262263264265
{ return convertDefaultStep(path, (DefaultStep) step); } else { throw new JaxenException( "Cannot convert: " + step + " to a Pattern" ); } return path; }
154155156157158159160161
{ this.nodeTest = nodeTest; } else { throw new JaxenException( "Attempt to overwrite nodeTest: " + this.nodeTest + " with: " + nodeTest ); } }
124125126127128129130
{ return new DefaultNotEqualsExpr( lhs, rhs ); } } throw new JaxenException( "Unhandled operator in createEqualityExpr(): " + equalityOperator ); }
154155156157158159160
{ return new DefaultGreaterThanEqualExpr( lhs, rhs ); } } throw new JaxenException( "Unhandled operator in createRelationalExpr(): " + relationalOperator ); }
174175176177178179180
{ return new DefaultMinusExpr( lhs, rhs ); } } throw new JaxenException( "Unhandled operator in createAdditiveExpr(): " + additiveOperator ); }
199200201202203204205
{ return new DefaultModExpr( lhs, rhs ); } } throw new JaxenException( "Unhandled operator in createMultiplicativeExpr(): " + multiplicativeOperator ); }
331332333334335336337338339
case Axis.ANCESTOR_OR_SELF: return new IterableAncestorOrSelfAxis( axis ); case Axis.ANCESTOR: return new IterableAncestorAxis( axis ); default: throw new JaxenException("Unrecognized axis code: " + axis); } }
448449450451452453454455456457458
else { throw new JaxenException( "Cannot convert: " + step + " to a Pattern" ); } return path;
168169170171172173174175
257258259260261262263264
} throw new JaxenException( "Unhandled operator in createEqualityExpr(): " + equalityOperator ); }