aboutsummaryrefslogtreecommitdiff
path: root/engine/src/core/com/jme3/asset/AssetNotFoundException.java
blob: e04a7fb587487ff386984b5a58bab25e4226e83f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.jme3.asset;

/**
 * <code>AssetNotFoundException</code> is thrown when the {@link AssetManager}
 * is unable to locate the requested asset using any of the registered
 * {@link AssetLocator}s.
 *
 * @author Kirill Vainer
 */
public class AssetNotFoundException extends RuntimeException {
    public AssetNotFoundException(String message){
        super(message);
    }
    public AssetNotFoundException(String message, Exception ex){
        super(message, ex);
    }
}