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

/**
 * <code>AssetLoadException</code> is thrown when the {@link AssetManager}
 * is able to find the requested asset, but there was a problem while loading
 * it.
 *
 * @author Kirill Vainer
 */
public class AssetLoadException extends RuntimeException {
    public AssetLoadException(String message){
        super(message);
    }
    public AssetLoadException(String message, Throwable cause){
        super(message, cause);
    }
}