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