1 package com.icl.saxon;2 3 /**4 * An InternalError represents an condition detected during Saxon processing that5 * should never occur.6 */7 8 public class InternalSaxonError extends Error {9 10 public InternalSaxonError (String message) {11 super(message);12 }13 14 }15 16