Package org.djutils.exceptions
Interface Try.Assignment<V>
- Type Parameters:
 V- value type
- Enclosing class:
 - Try
 
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
Functional interface for calls to Try.assign(...). For this a lambda expression can be used.
 
 
 FileInputStream fis = Try.assign(() -> new FileInputStream(fileString), IllegalArgumentException.class,
         "File %s is not a valid file.", fileString);
 
 
 Copyright (c) 2013-2025 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
 
 BSD-style license. See DJUTILS License.
 
- Author:
 - Alexander Verbraeck, Peter Knoppers
 
- 
Method Summary
 
- 
Method Details
- 
assign
Returns a value which is obtained from the context in which the Assignment was created.- Returns:
 - value which is obtained from the context in which the Assignment was created
 - Throws:
 Throwable- on any throwable in the try
 
 -