All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.artemis.prefab.MissingPrefabDataException Maven / Gradle / Ivy

There is a newer version: 2.3.0
Show newest version
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