git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7027 75d07b2b-3a1a-0410-a2c5-0572b91ccdca3.0
parent
0df414d2f0
commit
a83216731e
@ -0,0 +1,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); |
||||
} |
||||
} |
@ -0,0 +1,14 @@ |
||||
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); |
||||
} |
||||
} |
Loading…
Reference in new issue