com.artemis.prefab.MissingPrefabDataException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artemis-odb-serializer Show documentation
Show all versions of artemis-odb-serializer Show documentation
Fork of Artemis Entity System Framework.
package com.artemis.prefab;
import com.artemis.io.SerializationException;
public class MissingPrefabDataException extends SerializationException {
public MissingPrefabDataException() {
}
public MissingPrefabDataException(String message) {
super(message);
}
public MissingPrefabDataException(String message, Throwable cause) {
super(message, cause);
}
public MissingPrefabDataException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy