mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-20 15:35:08 +00:00
10 lines
167 B
Java
10 lines
167 B
Java
package com.earth2me.essentials.storage;
|
|
|
|
|
|
public class ObjectLoadException extends Exception
|
|
{
|
|
public ObjectLoadException(Throwable thrwbl)
|
|
{
|
|
super(thrwbl);
|
|
}
|
|
}
|