// Modified or written by Luca Marrocco for inclusion with hoptoad.
// Copyright (c) 2009 Luca Marrocco.
// Licensed under the Apache License, Version 2.0 (the "License")
package hoptoad;
public class Exceptions {
protected static final String ERROR_MESSAGE = "undefined method `password' for nil:NilClass";
public static final Exception newException(final String errorMessage) {
final String string = null;
try {
string.toString();
} catch (final Exception e) {
return new RuntimeException(errorMessage, e);
}
return newException(errorMessage);
}
}