001
014
015 package com.liferay.portlet.softwarecatalog;
016
017 import com.liferay.portal.kernel.exception.PortalException;
018
019
022 public class UnavailableProductVersionDirectDownloadURLException
023 extends PortalException {
024
025 public UnavailableProductVersionDirectDownloadURLException() {
026 }
027
028 public UnavailableProductVersionDirectDownloadURLException(String msg) {
029 super(msg);
030 }
031
032 public UnavailableProductVersionDirectDownloadURLException(
033 String msg, Throwable cause) {
034
035 super(msg, cause);
036 }
037
038 public UnavailableProductVersionDirectDownloadURLException(
039 Throwable cause) {
040
041 super(cause);
042 }
043
044 }