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

com.undefinedlabs.scope.exceptions.SerializerException Maven / Gradle / Ivy

package com.undefinedlabs.scope.exceptions;

import java.io.IOException;

public class SerializerException extends IOException {

  public SerializerException(String msg, Throwable cause) {
    super(msg, cause);
  }

  public SerializerException(String msg) {
    super(msg);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy