Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

TreeException.java 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * $Id$
  3. *
  4. *
  5. *
  6. * Copyright 1999-2003 The Apache Software Foundation.
  7. *
  8. * Licensed under the Apache License, Version 2.0 (the "License");
  9. * you may not use this file except in compliance with the License.
  10. * You may obtain a copy of the License at
  11. *
  12. * http://www.apache.org/licenses/LICENSE-2.0
  13. *
  14. * Unless required by applicable law or agreed to in writing, software
  15. * distributed under the License is distributed on an "AS IS" BASIS,
  16. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17. * See the License for the specific language governing permissions and
  18. * limitations under the License.
  19. *
  20. *
  21. *
  22. */
  23. package org.apache.fop.datastructs;
  24. import org.apache.fop.apps.FOPException;
  25. /**
  26. * Exceptions thrown during Tree/Node operations.
  27. * @author <a href="mailto:pbwest@powerup.com.au">Peter B. West</a>
  28. * @version $Revision$ $Name$
  29. */
  30. public class TreeException extends FOPException {
  31. private static final String tag = "$Name$";
  32. private static final String revision = "$Revision$";
  33. public TreeException(String message) {
  34. super(message);
  35. }
  36. public TreeException(Throwable e) {
  37. super(e);
  38. }
  39. }