Skip to content

Commit

Permalink
Removing GuideException
Browse files Browse the repository at this point in the history
  • Loading branch information
Muskan Gupta authored and Muskan Gupta committed Nov 13, 2024
1 parent 263a3a0 commit 05f84a4
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.adobe.aemds.guide.service.GuideException;
import com.adobe.cq.forms.core.components.internal.constants.ThemeConstants;
import com.adobe.cq.forms.core.components.models.form.FormContainer;
import com.adobe.cq.forms.core.components.models.form.FormStructureParser;
Expand Down Expand Up @@ -86,7 +85,7 @@ public String getThemeClientLibRefFromFormContainer() {
ValueMap themeProps = themeResource.getValueMap();
themeClientLibRef = themeProps.get(ThemeConstants.PROPERTY_CLIENTLIB_CATEGORY, "");
} else {
throw new GuideException("Invalid Theme Name " + themeContentPath);
logger.error("Invalid Theme Name {}", themeContentPath);
}
}

Expand Down

0 comments on commit 05f84a4

Please sign in to comment.