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

com.belerweb.social.exception.SocialException Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package com.belerweb.social.exception;

public class SocialException extends RuntimeException {

  private static final long serialVersionUID = 3536584215181288508L;

  public SocialException(Exception exception) {
    super(exception);
  }

  public SocialException(String message) {
    super(message);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy