* @return any object depending on implementation, {@link CharSequence} by default
* @throws Exception depending on implementation
*/
public Object error(Throwable e) throws Exception
{
return codec.enc(e instanceof ErrThrow ? ((ErrThrow)e).err : new Err(e), null);
}