AssetLoadException.java 460 B

1234567891011121314151617
  1. package com.jme3.asset;
  2. /**
  3. * <code>AssetLoadException</code> is thrown when the {@link AssetManager}
  4. * is able to find the requested asset, but there was a problem while loading
  5. * it.
  6. *
  7. * @author Kirill Vainer
  8. */
  9. public class AssetLoadException extends RuntimeException {
  10. public AssetLoadException(String message){
  11. super(message);
  12. }
  13. public AssetLoadException(String message, Throwable cause){
  14. super(message, cause);
  15. }
  16. }