001
014
015 package com.liferay.portal.security.auth;
016
017
020 public class RemoteAuthException extends AuthException {
021
022 public static final int WRONG_SHARED_SECRET = 101;
023
024 public RemoteAuthException() {
025 super();
026 }
027
028 public RemoteAuthException(String msg) {
029 super(msg);
030 }
031
032 public RemoteAuthException(String msg, Throwable cause) {
033 super(msg, cause);
034 }
035
036 public RemoteAuthException(Throwable cause) {
037 super(cause);
038 }
039
040 public String getURL() {
041 return _url;
042 }
043
044 public void setURL(String url) {
045 _url = url;
046 }
047
048 private String _url;
049
050 }