com.itextpdf.layout.exceptions.LayoutExceptionMessageConstant Maven / Gradle / Ivy
/*
This file is part of the iText (R) project.
Copyright (c) 1998-2024 Apryse Group NV
Authors: Apryse Software.
This program is offered under a commercial and under the AGPL license.
For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below.
AGPL licensing:
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see .
*/
package com.itextpdf.layout.exceptions;
/**
* Class that bundles all the error message templates as constants.
*/
public final class LayoutExceptionMessageConstant {
public static final String CANNOT_ADD_CELL_TO_COMPLETED_LARGE_TABLE = "The large table was completed. It's "
+ "prohibited to use it anymore. Created different Table instance instead.";
public static final String CANNOT_CREATE_LAYOUT_IMAGE_BY_WMF_IMAGE = "Cannot create layout image by WmfImage "
+ "instance. First convert the image into FormXObject and then use the corresponding layout image "
+ "constructor.";
public static final String CANNOT_DRAW_ELEMENTS_ON_ALREADY_FLUSHED_PAGES = "Cannot draw elements on already "
+ "flushed pages.";
public static final String DOCUMENT_CLOSED_IT_IS_IMPOSSIBLE_TO_EXECUTE_ACTION = "Document was closed. It is "
+ "impossible to execute action.";
public static final String FLEX_BASIS_CANNOT_BE_NULL = "Flex basis cannot be null.";
public static final String FLEX_GROW_CANNOT_BE_NEGATIVE = "Flex grow cannot be negative.";
public static final String FLEX_SHRINK_CANNOT_BE_NEGATIVE = "Flex shrink cannot be negative.";
public static final String FONT_PROVIDER_NOT_SET_FONT_FAMILY_NOT_RESOLVED = "FontProvider and FontSet are empty. "
+ "Cannot resolve font family name (see ElementPropertyContainer#setFontFamily) without initialized "
+ "FontProvider (see RootElement#setFontProvider).";
public static final String IO_EXCEPTION_WHILE_CREATING_FONT = "I/O exception while creating Font";
public static final String NONINVERTIBLE_MATRIX_CANNOT_BE_PROCESSED = "A noninvertible matrix has been parsed. "
+ "The behaviour is unpredictable.";
public static final String ROLE_IS_NOT_MAPPED_TO_ANY_STANDARD_ROLE = "Role \"{0}\" is not mapped to any standard "
+ "role.";
public static final String ROLE_IN_NAMESPACE_IS_NOT_MAPPED_TO_ANY_STANDARD_ROLE = "Role \"{0}\" in namespace {1} "
+ "is not mapped to any standard role.";
public static final String INLINE_VERTICAL_ALIGNMENT_DOESN_T_NEED_A_VALUE =
"Inline vertical alignment \"{0}\" doesn't need a value";
public static final String INVALID_COLUMN_PROPERTIES =
"Invalid column-count/column-width/column-gap properties, they're absent or have negative value";
public static final String INVALID_FONT_PROPERTY_VALUE = "Invalid FONT property value type.";
public static final String TAGGING_HINTKEY_SHOULD_HAVE_ACCES = "TaggingHintKey should have accessibility properties" ;
public static final String GRID_AUTO_REPEAT_CAN_BE_USED_ONLY_ONCE
= "Automatic repetitions in the grid template are allowed only once per template.";
public static final String GRID_AUTO_REPEAT_CANNOT_BE_COMBINED_WITH_INDEFINITE_SIZES
= "Automatic repetitions in the grid template cannot be combined with intrinsic or flexible sizes.";
public static final String FLEXIBLE_ARENT_ALLOWED_AS_MINIMUM_IN_MINMAX
= "Flexible values aren't allowed as minimum in minmax grid function.";
private LayoutExceptionMessageConstant(){}
}