Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NullNamingPropertyException (0.17 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/NullNamingPropertyException.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal;
    
    public class NullNamingPropertyException extends RuntimeException {
        NullNamingPropertyException(Object thing) {
            super(String.format("Unable to determine the name of '%s' because its value for the naming property 'name' is null", thing));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 909 bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/DynamicPropertyNamer.java

                }
            } catch (MissingPropertyException e) {
                throw new NoNamingPropertyException(thing);
            }
    
            if (name == null) {
                throw new NullNamingPropertyException(thing);
            }
    
            return name.toString();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.7K bytes
    - Viewed (0)
Back to top