Home | History | Annotate | Download | only in asset
      1 package com.jme3.asset;
      2 
      3 /**
      4  * <code>AssetNotFoundException</code> is thrown when the {@link AssetManager}
      5  * is unable to locate the requested asset using any of the registered
      6  * {@link AssetLocator}s.
      7  *
      8  * @author Kirill Vainer
      9  */
     10 public class AssetNotFoundException extends RuntimeException {
     11     public AssetNotFoundException(String message){
     12         super(message);
     13     }
     14     public AssetNotFoundException(String message, Exception ex){
     15         super(message, ex);
     16     }
     17 }
     18